TypeScript/tests/baselines/reference/arguments.types
2014-08-25 10:55:22 -07:00

9 lines
162 B
Text

=== tests/cases/compiler/arguments.ts ===
function f() {
>f : typeof f
var x=arguments[12];
>x : any
>arguments[12] : any
>arguments : IArguments
}