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

11 lines
145 B
Plaintext

=== tests/cases/compiler/idInProp.ts ===
function f() {
>f : () => void
var t: { (f: any) : any; };
>t : (f: any) => any
>f : any
}