TypeScript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments07.ts
2015-04-16 12:29:49 -07:00

5 lines
93 B
TypeScript

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