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

6 lines
79 B
TypeScript

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