2019-08-13 12:28:51 +00:00
|
|
|
// Copyright 2019 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-03-16 13:02:35 +00:00
|
|
|
// Flags: --jitless --gc-interval=12 --stack-size=100
|
2019-08-13 12:28:51 +00:00
|
|
|
|
|
|
|
__f_0();
|
|
|
|
function __f_0() {
|
|
|
|
try {
|
|
|
|
__f_0();
|
|
|
|
} catch(e) {
|
|
|
|
"b".replace(/(b)/g, function() { return "c"; });
|
|
|
|
}
|
|
|
|
}
|