TypeScript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments09_ES6.ts

5 lines
85 B
TypeScript
Raw Normal View History

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