diff options
Diffstat (limited to 'integration/snippets/multiple-var.js')
-rw-r--r-- | integration/snippets/multiple-var.js | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/integration/snippets/multiple-var.js b/integration/snippets/multiple-var.js deleted file mode 100644 index 527634a00..000000000 --- a/integration/snippets/multiple-var.js +++ /dev/null @@ -1,11 +0,0 @@ -var foo = true; - -globalThis.TRUE_BUT_WE_CANT_TREESHAKE_IT = true; -if (globalThis.TRUE_BUT_WE_CANT_TREESHAKE_IT) { - var { foo } = { foo: false }; -} - -export function test() { - console.assert(foo === false, "foo should be false"); - return testDone(import.meta.url); -} |