TypeScript/tests/baselines/reference/inOperatorWithGeneric.types
2016-01-06 10:53:27 -08:00

16 lines
217 B
Text

=== tests/cases/compiler/inOperatorWithGeneric.ts ===
class C<T> {
>C : C<T>
>T : T
foo(x:T) {
>foo : (x: T) => void
>x : T
>T : T
for (var p in x) {
>p : string
>x : T
}
}
}