TypeScript/tests/cases/compiler/inheritanceStaticFuncOverridingPropertyOfFuncType.ts

9 lines
114 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
class a {
static x: () => string;
}
class b extends a {
static x() {
return "20";
}
}