TypeScript/tests/baselines/reference/idInProp.types
2014-08-15 14:37:48 -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
}