File: genericTypeWithNonGenericBaseMisMatch.errors.txt

package info (click to toggle)
node-typescript 2.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 203,952 kB
  • ctags: 52,987
  • sloc: sh: 11; makefile: 5
file content (38 lines) | stat: -rw-r--r-- 2,245 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
tests/cases/compiler/genericTypeWithNonGenericBaseMisMatch.ts(4,7): error TS2420: Class 'X<T>' incorrectly implements interface 'I'.
  Types of property 'f' are incompatible.
    Type '(a: T) => void' is not assignable to type '(a: { a: number; }) => void'.
      Types of parameters 'a' and 'a' are incompatible.
        Type '{ a: number; }' is not assignable to type 'T'.
tests/cases/compiler/genericTypeWithNonGenericBaseMisMatch.ts(8,5): error TS2322: Type 'X<{ a: string; }>' is not assignable to type 'I'.
  Types of property 'f' are incompatible.
    Type '(a: { a: string; }) => void' is not assignable to type '(a: { a: number; }) => void'.
      Types of parameters 'a' and 'a' are incompatible.
        Type '{ a: number; }' is not assignable to type '{ a: string; }'.
          Types of property 'a' are incompatible.
            Type 'number' is not assignable to type 'string'.


==== tests/cases/compiler/genericTypeWithNonGenericBaseMisMatch.ts (2 errors) ====
    interface I {
    	f: (a: { a: number }) => void
    }
    class X<T extends { a: string }> implements I {
          ~
!!! error TS2420: Class 'X<T>' incorrectly implements interface 'I'.
!!! error TS2420:   Types of property 'f' are incompatible.
!!! error TS2420:     Type '(a: T) => void' is not assignable to type '(a: { a: number; }) => void'.
!!! error TS2420:       Types of parameters 'a' and 'a' are incompatible.
!!! error TS2420:         Type '{ a: number; }' is not assignable to type 'T'.
    	f(a: T): void { }
    }
    var x = new X<{ a: string }>();
    var i: I = x; // Should not be allowed -- type of 'f' is incompatible with 'I'
        ~
!!! error TS2322: Type 'X<{ a: string; }>' is not assignable to type 'I'.
!!! error TS2322:   Types of property 'f' are incompatible.
!!! error TS2322:     Type '(a: { a: string; }) => void' is not assignable to type '(a: { a: number; }) => void'.
!!! error TS2322:       Types of parameters 'a' and 'a' are incompatible.
!!! error TS2322:         Type '{ a: number; }' is not assignable to type '{ a: string; }'.
!!! error TS2322:           Types of property 'a' are incompatible.
!!! error TS2322:             Type 'number' is not assignable to type 'string'.