2
0

bailout-copyProp1.js 666 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 test() {
  6. var f;
  7. (f = -6.92053759608629E+18) | 0;
  8. //f = -6.92053759608629E+18 | 0; // the above line should not be equivalent to this when bailing out
  9. var a = 0; // bail-out here
  10. var b = a !== null ? 0 : f |= 0;
  11. return f;
  12. }
  13. WScript.Echo(test());