TypeScript/tests/cases/compiler/forAwaitForUnion.ts
2017-05-30 15:14:52 -07:00

6 lines
145 B
TypeScript

// @target: esnext
// @lib: esnext
async function f<T>(source: Iterable<T> | AsyncIterable<T>) {
for await (const x of source) {
}
}