diff --git a/bundler/tests/fixture/deno-9055/input/entry.ts b/bundler/tests/fixture/deno-9055/input/entry.ts new file mode 100644 index 000000000000..dfbf73ce1276 --- /dev/null +++ b/bundler/tests/fixture/deno-9055/input/entry.ts @@ -0,0 +1,9 @@ +const x = { + n: 123, + t: 'text', + int: '==INT==' +} + +const { n, t, int } = x + +console.log(n, t, int)