TypeScript/tests/baselines/reference/emitArrowFunctionWhenUsingArguments09_ES6.types
2015-04-16 13:08:57 -07:00

12 lines
356 B
Text

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