blob: 1c85a7e208757685211e4fd6a72f3f6210185029 [file] [log] [blame]
function test() {
var O = {};
O[Symbol.search] = function(){
return 42;
};
return ''.search(O) === 42;
}
if (!test())
throw new Error("Test failed");