test133.js 497 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. function test0(x) {
  6. for(var i = 0; i < 2; ++i) {
  7. x ? o.length : 1;
  8. x ? 0 : 1;
  9. }
  10. };
  11. test0(1);