2
0

bug16717501.js 606 B

1234567891011121314151617
  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 test0() {
  6. for (var vnlgev in [1 .__parent__ = '']) {
  7. }
  8. // Value too big to be a tagged int on 32 bit platforms
  9. return 1518500249 in [];
  10. }
  11. // Trigger jit
  12. for (let i = 0; i < 1000; ++i) {
  13. test0();
  14. }
  15. console.log("pass");