blob: caedb4ac1b0b940669b821b5a1d22ea3068603f6 [file] [edit]
import { aValue } from "./a.js";
import { shouldThrow } from "../resources/assert.js"
export const bValue = 100;
shouldThrow(() => {
eval("aValue");
}, `ReferenceError: Cannot access 'aValue' before initialization.`);