mirror of https://github.com/tc39/test262.git
7 lines
206 B
JavaScript
7 lines
206 B
JavaScript
|
//@ runDefault
|
||
|
|
||
|
// Regression test for bug 180761. This test should not crash.
|
||
|
|
||
|
if (/(?:(?: |a)|\.a)* a*/.exec("/a.aaa") !== null)
|
||
|
throw "Expected /(?:(?: |a)|\.a)* a*/.exec(\"/a.aaa\") to not match";
|