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

11 lines
315 B
TypeScript

// @target: esnext,es2015,es5
// @noTypesAndSymbols: true
// @noEmit: true
// @useDefineForClassFields: false
// https://github.com/microsoft/TypeScript/issues/36295
class C {}
((b = class extends C { static x = 1 }) => { var C; })();
const x = "";
((b = class extends C { static x = 1 }, d = x) => { var x; })();