TypeScript/tests/baselines/reference/idInProp.types

11 lines
254 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/idInProp.ts ===
function f() {
2015-04-13 23:01:57 +02:00
>f : () => void, Symbol(f, Decl(idInProp.ts, 0, 0))
2014-08-15 23:33:16 +02:00
var t: { (f: any) : any; };
2015-04-13 23:01:57 +02:00
>t : (f: any) => any, Symbol(t, Decl(idInProp.ts, 2, 3))
>f : any, Symbol(f, Decl(idInProp.ts, 2, 10))
2014-08-15 23:33:16 +02:00
}