| 1234567891011121314151617 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- function test0() {
- var sum = 0;
- var j = 0;
- for(var i = 0; i < 2; ++i) {
- if(j > 1)
- sum += 1 % j;
- }
- return sum;
- }
- test0();
- WScript.Echo("pass");
|