TypeScript/tests/baselines/reference/arguments.types
2014-08-15 14:37:48 -07:00

10 lines
164 B
Plaintext

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