TypeScript/tests/baselines/reference/idInProp.types

11 lines
145 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/idInProp.ts ===
function f() {
>f : () => void
2014-08-15 23:33:16 +02:00
var t: { (f: any) : any; };
>t : (f: any) => any
>f : any
2014-08-15 23:33:16 +02:00
}