TypeScript/tests/cases/compiler/capturedParametersInInitializers2.ts

5 lines
No EOL
107 B
TypeScript

function foo(y = class {static c = x}, x = 1) {
y.c
}
function foo2(y = class {[x] = x}, x = 1) {
}