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

11 lines
241 B
TypeScript

//@target: es5
declare var console: any;
const arr: {y(): number}[] = [];
for (let i = 0; i < 3; i++) {
arr.push(class C {
static x = i;
static y = () => C.x * 2;
});
}
arr.forEach(C => console.log(C.y()));