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

7 lines
96 B
TypeScript

// once caused stack overflow
class C {
static get x() {
return this;
}
}