blob: 8cc42d1acc898322f991c578ebff86a278e49464 [file] [log] [blame]
import { B } from "./B.js"
import { shouldThrow } from "../resources/assert.js"
export let A = "A";
shouldThrow(() => {
eval("B");
}, `ReferenceError: Cannot access uninitialized variable.`);