jdk-24/nashorn/test/script/basic/JDK-8007522.js
2013-02-05 21:00:04 +05:30

14 lines
260 B
JavaScript

/**
* JDK-8007522: IllegalStateException thrown from String.prototype.search function
*
* @test
* @run
*/
var str = "hello";
// search used to result in IllegalStateException
if (str.search(/foo/g) != -1) {
fail("String.prototype.search failed");
}