TypeScript/tests/baselines/reference/emitArrowFunctionWhenUsingArguments04_ES6.types

14 lines
291 B
Plaintext
Raw Normal View History

2015-04-16 22:08:57 +02:00
=== tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments04_ES6.ts ===
function f() {
>f : () => void
var arguments;
>arguments : any
var a = () => arguments;
>a : () => IArguments
>() => arguments : () => IArguments
>arguments : IArguments
}