swc/crates/swc_ecma_parser/tests/tsc/topLevelAwait.3.ts
2022-02-04 17:08:38 +09:00

9 lines
202 B
TypeScript

// @target: esnext
// @module: es2022,esnext
// @filename: index.d.ts
// await keyword allowed as identifier in a declaration file
export {};
declare const await: any;
declare class C extends await {}