TypeScript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck41.ts
2015-05-04 16:15:55 -07:00

6 lines
78 B
TypeScript

//@target: ES6
function* g() {
let x = {
[yield 0]: 0
}
}