TypeScript/tests/baselines/reference/arguments.types
2015-04-15 16:44:20 -07:00

11 lines
178 B
Plaintext

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