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

12 lines
165 B
TypeScript

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;
}