blob: cec7f1c1915b0d926ea1db40c581a171a3dbbb2f [file] [log] [blame]
function test() {
var re = /./;
try {
'/./'.startsWith(re);
} catch(e){
re[Symbol.match] = false;
return '/./'.startsWith(re);
}
}
if (!test())
throw new Error("Test failed");