TypeScript/tests/baselines/reference/argumentsBindsToFunctionScopeArgumentList.errors.txt
2014-09-11 16:11:08 -07:00

8 lines
384 B
Plaintext

==== tests/cases/compiler/argumentsBindsToFunctionScopeArgumentList.ts (1 errors) ====
var arguments = 10;
function foo(a) {
arguments = 10; /// This shouldnt be of type number and result in error.
~~~~~~~~~
!!! error TS2322: Type 'number' is not assignable to type 'IArguments':
!!! error TS2322: Property 'length' is missing in type 'Number'.
}