TypeScript/tests/baselines/reference/argumentsBindsToFunctionScopeArgumentList.js
2014-08-15 15:49:09 -07:00

12 lines
348 B
TypeScript

//// [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; /// This shouldnt be of type number and result in error.
}