TypeScript/tests/cases/compiler/classExpressionWithStaticProperties2.ts
Yui f8d6e26d4d Add tests and Update baselines (#10616)
Update tests and baselines

Update tests and baselines

Update tests for downlevel emit

Add tests and update baselines

Add tests and baselines

Update baselines

Update baselines
2016-09-01 13:57:52 -07:00

9 lines
147 B
TypeScript

//@target: es5
var v = class C {
static a = 1;
static b
static c = {
x: "hi"
}
static d = C.c.x + " world";
};