test123.js 540 B

12345678910111213
  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. var o = { a: 0 };
  7. var b = 3;
  8. for(var i = 0; i < 3; ++i)
  9. o.a = 0 / (b >>>= 1);
  10. return o.a;
  11. };
  12. WScript.Echo(test0());