blob: cedc4f286dfd6a9f3c04e206cdfb77c132f20edf [file] [log] [blame]
function test() {
return /x{1/.exec("x{1")[0] === "x{1"
&& /x]1/.exec("x]1")[0] === "x]1";
}
if (!test())
throw new Error("Test failed");