TypeScript/tests/baselines/reference/bases.errors.txt
Daniel Rosenwasser 6e77e2e810 Removed colons from diagnostic messages.
Also got rid of the 'terminalMessages' concept.
2014-10-28 00:48:58 -07:00

57 lines
2 KiB
Plaintext

tests/cases/compiler/bases.ts(7,15): error TS1005: ';' expected.
tests/cases/compiler/bases.ts(13,15): error TS1005: ';' expected.
tests/cases/compiler/bases.ts(7,14): error TS2339: Property 'y' does not exist on type 'B'.
tests/cases/compiler/bases.ts(7,17): error TS2304: Cannot find name 'any'.
tests/cases/compiler/bases.ts(11,7): error TS2420: Class 'C' incorrectly implements interface 'I'.
Property 'x' is missing in type 'C'.
tests/cases/compiler/bases.ts(12,5): error TS2377: Constructors for derived classes must contain a 'super' call.
tests/cases/compiler/bases.ts(13,14): error TS2339: Property 'x' does not exist on type 'C'.
tests/cases/compiler/bases.ts(13,17): error TS2304: Cannot find name 'any'.
tests/cases/compiler/bases.ts(17,9): error TS2339: Property 'x' does not exist on type 'C'.
tests/cases/compiler/bases.ts(18,9): error TS2339: Property 'y' does not exist on type 'C'.
==== tests/cases/compiler/bases.ts (10 errors) ====
interface I {
x;
}
class B {
constructor() {
this.y: any;
~
!!! error TS1005: ';' expected.
~
!!! error TS2339: Property 'y' does not exist on type 'B'.
~~~
!!! error TS2304: Cannot find name 'any'.
}
}
class C extends B implements I {
~
!!! error TS2420: Class 'C' incorrectly implements interface 'I'.
!!! error TS2420: Property 'x' is missing in type 'C'.
constructor() {
~~~~~~~~~~~~~~~
this.x: any;
~
!!! error TS1005: ';' expected.
~~~~~~~~~~~~~~~~~~~~
~
!!! error TS2339: Property 'x' does not exist on type 'C'.
~~~
!!! error TS2304: Cannot find name 'any'.
}
~~~~~
!!! error TS2377: Constructors for derived classes must contain a 'super' call.
}
new C().x;
~
!!! error TS2339: Property 'x' does not exist on type 'C'.
new C().y;
~
!!! error TS2339: Property 'y' does not exist on type 'C'.