Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
reg-exp-exec-cant-prove-which-structure-it-produces-in-ai.js
blob: c0698eb7f970405481438afc7a6562287f8f8f7a [
file
] [
log
] [
blame
]
// This should not crash.
function
foo
()
{
let r
=
/a/
;
r
.
compile
(
undefined
,
...
'd'
);
let a
=
r
.
exec
(
/b/
);
a
.
x
;
}
for
(
let i
=
0
;
i
<
1000
;
i
++)
{
foo
();
}