test/jdk/tools/jjs/strict.js
author mgronlun
Sun, 22 Sep 2019 17:31:57 +0200 (2019-09-22)
branchJEP-349-branch
changeset 58259 b6efcf2217f1
parent 47216 71c04702a3d5
permissions -rw-r--r--
clear_artifacts in the correct location
/*
 * 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);
    }
}