summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture08.out
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/bundle/fixture08.out')
-rw-r--r--cli/tests/bundle/fixture08.out8
1 files changed, 5 insertions, 3 deletions
diff --git a/cli/tests/bundle/fixture08.out b/cli/tests/bundle/fixture08.out
index f9435ab2a..01d6befb4 100644
--- a/cli/tests/bundle/fixture08.out
+++ b/cli/tests/bundle/fixture08.out
@@ -1,7 +1,9 @@
-const a = function() {
- const a1 = "a";
+const mod = function() {
+ const a = "a";
+ const a1 = a;
return {
- a: a1
+ a
};
}();
+const a = mod;
export { a };