bug9936017.js 536 B

12345678910111213141516171819202122232425
  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. var obj =
  6. {
  7. foo : function() {},
  8. }
  9. function test()
  10. {
  11. obj.foo.apply();
  12. }
  13. function test1()
  14. {
  15. test();
  16. }
  17. test1();
  18. test1();
  19. test1();
  20. WScript.Echo("PASSED");