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

57 lines
2 KiB
Plaintext
Raw Normal View History

tests/cases/compiler/bases.ts(7,14): error TS2339: Property 'y' does not exist on type 'B'.
tests/cases/compiler/bases.ts(7,15): error TS1005: ';' expected.
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,15): error TS1005: ';' expected.
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'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/bases.ts (10 errors) ====
interface I {
x;
}
class B {
constructor() {
this.y: any;
~
!!! error TS2339: Property 'y' does not exist on type 'B'.
~
!!! error TS1005: ';' expected.
2014-07-13 01:04:16 +02:00
~~~
!!! error TS2304: Cannot find name 'any'.
2014-07-13 01:04:16 +02:00
}
}
class C extends B implements I {
~
!!! error TS2420: Class 'C' incorrectly implements interface 'I'.
!!! error TS2420: Property 'x' is missing in type 'C'.
2014-07-13 01:04:16 +02:00
constructor() {
~~~~~~~~~~~~~~~
this.x: any;
~~~~~~~~~~~~~~~~~~~~
~
!!! error TS2339: Property 'x' does not exist on type 'C'.
~
!!! error TS1005: ';' expected.
2014-07-13 01:04:16 +02:00
~~~
!!! error TS2304: Cannot find name 'any'.
2014-07-13 01:04:16 +02:00
}
~~~~~
!!! error TS2377: Constructors for derived classes must contain a 'super' call.
2014-07-13 01:04:16 +02:00
}
new C().x;
~
!!! error TS2339: Property 'x' does not exist on type 'C'.
2014-07-13 01:04:16 +02:00
new C().y;
~
!!! error TS2339: Property 'y' does not exist on type 'C'.
2014-07-13 01:04:16 +02:00