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

14 lines
456 B
Plaintext
Raw Normal View History

tests/cases/compiler/errorSupression1.ts(4,15): error TS2339: Property 'b' does not exist on type 'typeof Foo'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/errorSupression1.ts (1 errors) ====
class Foo { static bar() { return "x"; } }
var baz = Foo.b;
~
!!! error TS2339: Property 'b' does not exist on type 'typeof Foo'.
2014-07-13 01:04:16 +02:00
// Foo.b won't bind.
baz.concat("y");
// So we don't want an error on 'concat'.