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

13 lines
463 B
Plaintext

==== tests/cases/compiler/instanceSubtypeCheck2.ts (1 errors) ====
class C1<T> {
x: C2<T>;
}
class C2<T> extends C1<T> {
~~
!!! error TS2416: Class 'C2<T>' incorrectly extends base class 'C1<T>':
!!! error TS2416: Types of property 'x' are incompatible:
!!! error TS2416: Type 'string' is not assignable to type 'C2<T>':
!!! error TS2416: Property 'x' is missing in type 'String'.
x: string
}