TypeScript/tests/baselines/reference/excessPropertyErrorsSuppressed.symbols
2015-08-26 17:15:21 -07:00

9 lines
382 B
Plaintext

=== tests/cases/compiler/excessPropertyErrorsSuppressed.ts ===
var x: { a: string } = { a: "hello", b: 42 }; // No error
>x : Symbol(x, Decl(excessPropertyErrorsSuppressed.ts, 1, 3))
>a : Symbol(a, Decl(excessPropertyErrorsSuppressed.ts, 1, 8))
>a : Symbol(a, Decl(excessPropertyErrorsSuppressed.ts, 1, 24))
>b : Symbol(b, Decl(excessPropertyErrorsSuppressed.ts, 1, 36))