jdk-24/test/jdk/tools/jjs/strict.js
2017-09-12 19:03:39 +02:00

13 lines
281 B
JavaScript

/*
* This is the test JavaScript program used in jjs-strictTest.sh
*/
try {
v = "hello";
throw new Error("should have thrown ReferenceError");
} catch (e) {
if (! (e instanceof ReferenceError)) {
throw new Error("ReferenceError expected, got " + e);
}
}