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

16 lines
326 B
Plaintext

==== tests/cases/compiler/undeclaredMethod.ts (1 errors) ====
module M {
export class C {
public salt() {}
}
}
var c:M.C = new M.C();
c.salt(); // cool
c.saltbar(); // crash
~~~~~~~
!!! Property 'saltbar' does not exist on type 'C'.