TypeScript/tests/baselines/reference/typeParameterConstrainedToOuterTypeParameter.symbols
2015-04-15 16:44:20 -07:00

32 lines
1.6 KiB
Text

=== tests/cases/compiler/typeParameterConstrainedToOuterTypeParameter.ts ===
interface A<T> {
>A : Symbol(A, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 0, 0))
>T : Symbol(T, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 0, 12))
<U extends T>(x: U[])
>U : Symbol(U, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 1, 5))
>T : Symbol(T, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 0, 12))
>x : Symbol(x, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 1, 18))
>U : Symbol(U, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 1, 5))
}
interface B<T> {
>B : Symbol(B, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 2, 1))
>T : Symbol(T, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 4, 12))
<U extends T>(x: U)
>U : Symbol(U, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 5, 5))
>T : Symbol(T, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 4, 12))
>x : Symbol(x, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 5, 18))
>U : Symbol(U, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 5, 5))
}
var a: A<string>
>a : Symbol(a, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 8, 3))
>A : Symbol(A, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 0, 0))
var b: B<string> = a; // assignment should be legal (both U's get instantiated to any for comparison)
>b : Symbol(b, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 9, 3))
>B : Symbol(B, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 2, 1))
>a : Symbol(a, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 8, 3))