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

5 lines
84 B
TypeScript
Raw Normal View History

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