blob: cb115b5fc22eb7ee7c20df2c15be34415e900831 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
var foo = true;
globalThis.TRUE_BUT_WE_CANT_TREESHAKE_IT = true;
if (globalThis.TRUE_BUT_WE_CANT_TREESHAKE_IT)
({ foo } = { foo: false });
var foo;
export function test() {
console.assert(foo === false, "foo should be false");
return testDone(import.meta.url);
}
|