TypeScript/tests/cases/compiler/asyncIIFE.ts

11 lines
134 B
TypeScript
Raw Normal View History

// @target: ES6
function f1() {
(async () => {
await 10
throw new Error();
})();
var x = 1;
}