TypeScript/tests/cases/compiler/classExpressionWithStaticProperties1.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

5 lines
86 B
TypeScript

var v = class C {
static a = 1;
static b = 2;
static c = C.a + C.b;
};