TypeScript/tests/baselines/reference/arguments.types
2016-09-01 14:25:44 -07:00

11 lines
174 B
Plaintext

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