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

5 lines
68 B
TypeScript

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