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

15 lines
432 B
Plaintext

tests/cases/conformance/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement1.ts(4,3): error TS1109: Expression expected.
==== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement1.ts (1 errors) ====
class Foo {
f1() {
if (
}
~
!!! error TS1109: Expression expected.
f2() {
}
f3() {
}
}