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

7 lines
308 B
Plaintext

=== tests/cases/compiler/contextualTyping15.ts ===
class foo { public bar: { (): number; (i: number): number; } = function() { return 1 }; }
>foo : Symbol(foo, Decl(contextualTyping15.ts, 0, 0))
>bar : Symbol(bar, Decl(contextualTyping15.ts, 0, 11))
>i : Symbol(i, Decl(contextualTyping15.ts, 0, 39))