TypeScript/tests/baselines/reference/parserErrantEqualsGreaterThanAfterFunction1.errors.txt

10 lines
687 B
Text
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserErrantEqualsGreaterThanAfterFunction1.ts(1,14): error TS1144: Block or ';' expected.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserErrantEqualsGreaterThanAfterFunction1.ts(1,10): error TS2391: Function implementation is missing or not immediately following the declaration.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserErrantEqualsGreaterThanAfterFunction1.ts (2 errors) ====
function f() => 4;
~~
!!! error TS1144: Block or ';' expected.
2014-07-31 01:27:13 +02:00
~
!!! error TS2391: Function implementation is missing or not immediately following the declaration.