swc/crates/swc_ecma_parser/tests/tsc/emitArrowFunctionWhenUsingArguments14.ts

8 lines
130 B
TypeScript

// @target: es5
function f() {
if (Math.random()) {
const arguments = 100;
return () => arguments;
}
}