TypeScript/tests/baselines/reference/idInProp.types
2015-04-13 14:29:37 -07:00

11 lines
254 B
Plaintext

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