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

6 lines
111 B
TypeScript
Raw Normal View History

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