Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
stress
/
simple-regexp-test-folding-fail.js
blob: 517a8530938bce8414dbdab8334697ed69d55111 [
file
] [
edit
]
function
foo
()
{
return
/(f)(o)(o)/
.
test
(
"bar"
);
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
testLoopCount
;
++
i
)
{
var
result
=
foo
();
if
(
result
!=
false
)
throw
"Error: bad result: "
+
result
;
}