aboutsummaryrefslogtreecommitdiff
path: root/src/test/fixtures/duplicate-exports-bug.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/fixtures/duplicate-exports-bug.js')
-rw-r--r--src/test/fixtures/duplicate-exports-bug.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/fixtures/duplicate-exports-bug.js b/src/test/fixtures/duplicate-exports-bug.js
new file mode 100644
index 000000000..c92e18601
--- /dev/null
+++ b/src/test/fixtures/duplicate-exports-bug.js
@@ -0,0 +1,5 @@
+export function boop() {}
+
+var UniformsUtils;
+
+export { UniformsUtils };