TypeScript/tests/baselines/reference/emitArrowFunctionWhenUsingArguments03_ES6.js

9 lines
192 B
TypeScript
Raw Normal View History

2015-04-16 21:42:25 +02:00
//// [emitArrowFunctionWhenUsingArguments03_ES6.ts]
var arguments;
var a = () => arguments;
//// [emitArrowFunctionWhenUsingArguments03_ES6.js]
var arguments;
var a = () => arguments;