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

15 lines
No EOL
271 B
TypeScript

// @declaration: true
class C {
private static x = 1;
static y = 1;
private static a() { }
static b() { }
private static get c() { return 1; }
static get d() { return 1; }
private static set e(v) { }
static set f(v) { }
}