TypeScript/tests/baselines/reference/asyncArrowFunction5_es6.js

8 lines
193 B
TypeScript

//// [asyncArrowFunction5_es6.ts]
var foo = async (await): Promise<void> => {
}
//// [asyncArrowFunction5_es6.js]
var foo = (await) => __awaiter(this, void 0, void 0, function* () {
});