TypeScript/tests/cases/compiler/es5-asyncFunction.ts
2016-06-14 17:59:44 -07:00

10 lines
142 B
TypeScript

// @lib: es5,es2015.promise
// @target: ES5
declare var x;
async function empty() {
}
async function singleAwait() {
await x;
}