OS_5403724.js 585 B

123456789101112131415161718
  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. // OS5403724: Inlined ES6 class constructor not getting new.target",
  6. // -maxinterpretcount:3 -off:simplejit
  7. var A = class {
  8. constructor () { }
  9. }
  10. for (var i=0; i<4; i++)
  11. {
  12. (()=>new A())();
  13. }
  14. print("pass");