TypeScript/tests/baselines/reference/topLevelAwaitErrors.2(module=es2022).js
Kagami Sascha Rosylight 2161e1852f
Add module: es2022 (#44656)
Closes #44653
2021-09-29 17:44:57 -07:00

12 lines
218 B
TypeScript

//// [topLevelAwaitErrors.2.ts]
export {};
// reparse variable name as await should fail
var await = 1;
//// [topLevelAwaitErrors.2.js]
// reparse variable name as await should fail
var await = 1;
export {};