TypeScript/tests/baselines/reference/parserWithStatement2.errors.txt
2014-09-12 13:35:07 -07:00

11 lines
640 B
Plaintext

tests/cases/conformance/parser/ecmascript5/Statements/parserWithStatement2.ts(2,3): error TS1108: A 'return' statement can only be used within a function body.
tests/cases/conformance/parser/ecmascript5/Statements/parserWithStatement2.ts(1,7): error TS2410: All symbols within a 'with' block will be resolved to 'any'.
==== tests/cases/conformance/parser/ecmascript5/Statements/parserWithStatement2.ts (2 errors) ====
with (1)
~
!!! error TS2410: All symbols within a 'with' block will be resolved to 'any'.
return;
~~~~~~
!!! error TS1108: A 'return' statement can only be used within a function body.