blob: aa747fc2613cd85b5bd11e3f8998c66a78649cd1 [file] [log] [blame]
import { shouldThrow, shouldBe } from "./resources/assert.js";
import { otherTaggedTemplates } from "./tagged-template-inside-module/other-tagged-templates.js"
function call(site) {
return site;
}
var template = otherTaggedTemplates();
shouldBe(call`Cocoa` !== template, true);
shouldBe(template, otherTaggedTemplates());
shouldBe(template, new otherTaggedTemplates());