TypeScript/tests/baselines/reference/contextualTyping35.symbols
2015-04-15 16:44:20 -07:00

8 lines
323 B
Plaintext

=== tests/cases/compiler/contextualTyping35.ts ===
var foo = <{ id: number;}> {id:4, name: "as"};
>foo : Symbol(foo, Decl(contextualTyping35.ts, 0, 3))
>id : Symbol(id, Decl(contextualTyping35.ts, 0, 12))
>id : Symbol(id, Decl(contextualTyping35.ts, 0, 28))
>name : Symbol(name, Decl(contextualTyping35.ts, 0, 33))