TypeScript/tests/cases/compiler/staticClassMemberError.ts

12 lines
165 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
class C {
static s;
public a() {
s = 1;
}
}
// just want to make sure this one doesn't crash the compiler
function Foo();
class Foo {
static bar;
}