TypeScript/tests/baselines/reference/emitArrowFunctionWhenUsingArguments08.js

11 lines
281 B
TypeScript
Raw Normal View History

2015-04-16 21:42:25 +02:00
//// [emitArrowFunctionWhenUsingArguments08.ts]
function f(arguments) {
var a = () => (arguments) => arguments;
}
//// [emitArrowFunctionWhenUsingArguments08.js]
function f(arguments) {
var a = function () { return function (arguments) { return arguments; }; };
}