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

5 lines
85 B
TypeScript
Raw Normal View History

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