summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/file_tests-fixture10.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/bundle/file_tests-fixture10.ts')
-rw-r--r--cli/tests/bundle/file_tests-fixture10.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/tests/bundle/file_tests-fixture10.ts b/cli/tests/bundle/file_tests-fixture10.ts
new file mode 100644
index 000000000..bec555da8
--- /dev/null
+++ b/cli/tests/bundle/file_tests-fixture10.ts
@@ -0,0 +1,7 @@
+import { a as defaultA } from "./subdir/l.ts";
+
+const o: { a?: string } = {};
+
+const { a = defaultA } = o;
+
+console.log(a);