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

17 lines
536 B
Plaintext

tests/cases/compiler/objectLiteralWithSemicolons2.ts(2,4): error TS1005: ':' expected.
tests/cases/compiler/objectLiteralWithSemicolons2.ts(3,4): error TS1005: ':' expected.
tests/cases/compiler/objectLiteralWithSemicolons2.ts(4,3): error TS2304: Cannot find name 'c'.
==== tests/cases/compiler/objectLiteralWithSemicolons2.ts (3 errors) ====
var v = {
a;
~
!!! error TS1005: ':' expected.
b;
~
!!! error TS1005: ':' expected.
c
~
!!! error TS2304: Cannot find name 'c'.
}