TypeScript/tests/cases/compiler/declFilePrivateStatic.ts

16 lines
288 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
// @declaration: true
// @target: es5
2014-07-13 01:04:16 +02:00
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) { }
}