bug_os17698041.js 589 B

123456789101112131415
  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. // Should not crash with switches:
  6. // -off:deferparse -force:redeferral -collectgarbage -parserstatecache -useparserstatecache
  7. function test() { }
  8. test();
  9. CollectGarbage();
  10. test();
  11. console.log('pass');