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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
=== tests/cases/conformance/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraint2.ts ===
// using a type parameter as a constraint for a type parameter is invalid
// these should be errors unless otherwise noted
function foo<T, U extends T>(x: T, y: U): U { return y; } // this is now an error
>foo : <T, U extends T>(x: T, y: U) => U
>x : T
>y : U
>y : U
foo(1, '');
>foo(1, '') : number
>foo : <T, U extends T>(x: T, y: U) => U
>1 : 1
>'' : ""
foo(1, {});
>foo(1, {}) : number
>foo : <T, U extends T>(x: T, y: U) => U
>1 : 1
>{} : {}
interface NumberVariant extends Number {
x: number;
>x : number
}
var n: NumberVariant;
>n : NumberVariant
var r3 = foo(1, n);
>r3 : number
>foo(1, n) : number
>foo : <T, U extends T>(x: T, y: U) => U
>1 : 1
>n : NumberVariant
function foo2<T, U extends { length: T }>(x: T, y: U) { return y; } // this is now an error
>foo2 : <T, U extends { length: T; }>(x: T, y: U) => U
>length : T
>x : T
>y : U
>y : U
foo2(1, { length: '' });
>foo2(1, { length: '' }) : { length: number; }
>foo2 : <T, U extends { length: T; }>(x: T, y: U) => U
>1 : 1
>{ length: '' } : { length: string; }
>length : string
>'' : ""
foo2(1, { length: {} });
>foo2(1, { length: {} }) : { length: number; }
>foo2 : <T, U extends { length: T; }>(x: T, y: U) => U
>1 : 1
>{ length: {} } : { length: {}; }
>length : {}
>{} : {}
foo2([], ['']);
>foo2([], ['']) : { length: any[]; }
>foo2 : <T, U extends { length: T; }>(x: T, y: U) => U
>[] : undefined[]
>[''] : string[]
>'' : ""
|