• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// @target: ES6
2function f() {
3    var x=arguments[12];
4    (() => arguments)();
5}
6
7(() => arguments)();
8
9interface I {
10    method(args: typeof arguments): void;
11    fn: (args: typeof arguments) => void;
12    (args: typeof arguments): void;
13    new (args: typeof arguments): void;
14    construct: new (args: typeof arguments) => void;
15}