File: genericCallbackInvokedInsideItsContainingFunction1.errors.txt

package info (click to toggle)
node-typescript 2.1.5-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 203,960 kB
  • sloc: sh: 11; makefile: 5
file content (43 lines) | stat: -rw-r--r-- 2,705 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
39
40
41
42
43
tests/cases/compiler/genericCallbackInvokedInsideItsContainingFunction1.ts(2,14): error TS2346: Supplied parameters do not match any signature of call target.
tests/cases/compiler/genericCallbackInvokedInsideItsContainingFunction1.ts(3,16): error TS2345: Argument of type '1' is not assignable to parameter of type 'T'.
tests/cases/compiler/genericCallbackInvokedInsideItsContainingFunction1.ts(4,14): error TS2346: Supplied parameters do not match any signature of call target.
tests/cases/compiler/genericCallbackInvokedInsideItsContainingFunction1.ts(8,15): error TS2346: Supplied parameters do not match any signature of call target.
tests/cases/compiler/genericCallbackInvokedInsideItsContainingFunction1.ts(9,15): error TS2346: Supplied parameters do not match any signature of call target.
tests/cases/compiler/genericCallbackInvokedInsideItsContainingFunction1.ts(12,17): error TS2345: Argument of type 'U' is not assignable to parameter of type 'T'.
tests/cases/compiler/genericCallbackInvokedInsideItsContainingFunction1.ts(13,15): error TS2346: Supplied parameters do not match any signature of call target.
tests/cases/compiler/genericCallbackInvokedInsideItsContainingFunction1.ts(14,15): error TS2346: Supplied parameters do not match any signature of call target.


==== tests/cases/compiler/genericCallbackInvokedInsideItsContainingFunction1.ts (8 errors) ====
    function foo<T, U>(x:T, y:U, f: (v: T) => U) {
        var r1 = f<number>(1);
                 ~~~~~~~~~~~~
!!! error TS2346: Supplied parameters do not match any signature of call target.
        var r2 = f(1);
                   ~
!!! error TS2345: Argument of type '1' is not assignable to parameter of type 'T'.
        var r3 = f<any>(null);
                 ~~~~~~~~~~~~
!!! error TS2346: Supplied parameters do not match any signature of call target.
        var r4 = f(null);
    
        var r11 = f(x);
        var r21 = f<number>(x);
                  ~~~~~~~~~~~~
!!! error TS2346: Supplied parameters do not match any signature of call target.
        var r31 = f<any>(null);
                  ~~~~~~~~~~~~
!!! error TS2346: Supplied parameters do not match any signature of call target.
        var r41 = f(null);
    
        var r12 = f(y);
                    ~
!!! error TS2345: Argument of type 'U' is not assignable to parameter of type 'T'.
        var r22 = f<number>(y);
                  ~~~~~~~~~~~~
!!! error TS2346: Supplied parameters do not match any signature of call target.
        var r32 = f<any>(null);
                  ~~~~~~~~~~~~
!!! error TS2346: Supplied parameters do not match any signature of call target.
        var r42 = f(null);
    }