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

5 lines
89 B
TypeScript

// @target: es5
function f(arguments) {
var a = () => (arguments) => arguments;
}