TypeScript/tests/baselines/reference/memberAccessOnConstructorType.types
2014-08-15 14:37:48 -07:00

11 lines
219 B
Plaintext

=== tests/cases/compiler/memberAccessOnConstructorType.ts ===
var f: new () => void;
>f : new () => void
f.arguments == 0;
>f.arguments == 0 : boolean
>f.arguments : any
>f : new () => void
>arguments : any