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

13 lines
353 B
Plaintext

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