ArgumentsAttrIssue.js 490 B

123456789101112
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. function f1(...args) {
  6. eval("var arguments = 1;");
  7. }
  8. f1();
  9. f1();
  10. f1(); // Shouldn't throw.
  11. print("PASSED");