TypeScript/tests/cases/compiler/typeofClass.ts
2014-07-12 17:30:19 -07:00

11 lines
124 B
TypeScript

class K {
foo: number;
static bar: string;
}
var k1: K;
k1.foo;
k1.bar;
var k2: typeof K;
k2.foo;
k2.bar;