TypeScript/tests/baselines/reference/parserModifierOnStatementInBlock3.errors.txt
2015-04-26 18:31:47 -07:00

14 lines
697 B
Plaintext

tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserModifierOnStatementInBlock3.ts(1,17): error TS1148: Cannot compile modules unless the '--module' flag is provided.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserModifierOnStatementInBlock3.ts(2,4): error TS1184: Modifiers cannot appear here.
==== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserModifierOnStatementInBlock3.ts (2 errors) ====
export function foo() {
~~~
!!! error TS1148: Cannot compile modules unless the '--module' flag is provided.
export function bar() {
~~~~~~
!!! error TS1184: Modifiers cannot appear here.
}
}