bug_es5array.js 478 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. var func1 = function() {
  6. var ary = new Array(1);
  7. ary.map(function(a) { });
  8. }
  9. func1();
  10. print("Pass");