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

7 lines
95 B
TypeScript

//@target: ES6
function* g() {
class C {
@(yield "")
m() { }
};
}