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

16 lines
372 B
Plaintext

=== tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments10_ES6.ts ===
function f() {
>f : () => void
var _arguments = 10;
>_arguments : number
>10 : 10
var a = () => () => arguments;
>a : () => () => IArguments
>() => () => arguments : () => () => IArguments
>() => arguments : () => IArguments
>arguments : IArguments
}