TypeScript/tests/baselines/reference/argumentsBindsToFunctionScopeArgumentList.js
2014-07-12 17:30:19 -07:00

12 lines
291 B
JavaScript

//// [argumentsBindsToFunctionScopeArgumentList.ts]
var arguments = 10;
function foo(a) {
arguments = 10; /// This shouldnt be of type number and result in error.
}
//// [argumentsBindsToFunctionScopeArgumentList.js]
var arguments = 10;
function foo(a) {
arguments = 10;
}