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

18 lines
246 B
TypeScript

class A {
static one<T>(source: T, value: number): T {
return source;
}
static goo() { return 0; }
static two<T>(source: T): T {
return this.one<T>(source, 42); // should not error
}
}