TypeScript/tests/cases/compiler/es5-asyncFunction.ts

10 lines
142 B
TypeScript
Raw Normal View History

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