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

6 lines
110 B
TypeScript

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