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

23 lines
260 B
Plaintext

=== tests/cases/compiler/declFileForTypeParameters.ts ===
class C<T> {
>C : C<T>
>T : T
x: T;
>x : T
>T : T
foo(a: T): T {
>foo : (a: T) => T
>a : T
>T : T
>T : T
return this.x;
>this.x : T
>this : C<T>
>x : T
}
}