bug13172050.js 604 B

1234567891011121314151617181920212223242526
  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 foo()
  6. {
  7. function blah() {}
  8. }
  9. function bar(f)
  10. {
  11. for (var i = 0; i < 1; i++)
  12. {
  13. if (f)
  14. {
  15. f();
  16. }
  17. }
  18. }
  19. bar(foo);
  20. bar(foo);
  21. bar();
  22. WScript.Echo("PASSED");