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

11 lines
220 B
Plaintext

=== tests/cases/compiler/idInProp.ts ===
function f() {
>f : Symbol(f, Decl(idInProp.ts, 0, 0))
var t: { (f: any) : any; };
>t : Symbol(t, Decl(idInProp.ts, 2, 3))
>f : Symbol(f, Decl(idInProp.ts, 2, 10))
}