TypeScript/tests/baselines/reference/undeclaredMethod.errors.txt
2014-09-11 16:11:08 -07:00

16 lines
340 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
~~~~~~~
!!! error TS2339: Property 'saltbar' does not exist on type 'C'.