TypeScript/tests/cases/compiler/inheritanceStaticMembersIncompatible.ts

7 lines
84 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: number;
}