TypeScript/tests/baselines/reference/typeofClass.errors.txt

16 lines
353 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/typeofClass.ts (2 errors) ====
class K {
foo: number;
static bar: string;
}
var k1: K;
k1.foo;
k1.bar;
~~~
!!! Property 'bar' does not exist on type 'K'.
var k2: typeof K;
k2.foo;
~~~
!!! Property 'foo' does not exist on type 'typeof K'.
k2.bar;