TypeScript/tests/cases/compiler/inOperatorWithGeneric.ts
2014-07-12 17:30:19 -07:00

6 lines
77 B
TypeScript

class C<T> {
foo(x:T) {
for (var p in x) {
}
}
}