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

8 lines
102 B
TypeScript

// @declaration: true
class C<T> {
x: T;
foo(a: T): T {
return this.x;
}
}