TypeScript/tests/baselines/reference/parserErrorRecoveryIfStatement1.errors.txt
2014-09-11 16:11:08 -07:00

12 lines
281 B
Plaintext

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