TypeScript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck58.ts
2015-05-11 17:40:38 -07:00

6 lines
86 B
TypeScript

//@target: ES6
function* g() {
class C {
static x = yield 0;
};
}