blob: 4c87965495c00c64963295eda4d79ddc9557b436 [file] [log] [blame]
import { a, b, change } from 'aliased-names/main.js'
import { shouldBe, shouldThrow } from "./resources/assert.js";
shouldBe(a, 42);
shouldBe(b, 42);
change(400);
shouldBe(a, 400);
shouldBe(b, 400);