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

4 lines
71 B
TypeScript

class foo<T> {
static M(x: (x: T) => { x: { y: T } }) {
}
}