TypeScript/tests/baselines/reference/errorSupression1.errors.txt
2014-07-12 17:30:19 -07:00

11 lines
325 B
Plaintext

==== tests/cases/compiler/errorSupression1.ts (1 errors) ====
class Foo { static bar() { return "x"; } }
var baz = Foo.b;
~
!!! Property 'b' does not exist on type 'typeof Foo'.
// Foo.b won't bind.
baz.concat("y");
// So we don't want an error on 'concat'.