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

4 lines
103 B
TypeScript

class foo<T> {
static get Foo(): () => T { return null; }
static set Bar(v: { v: T }) { }
}