summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Tests/modules/loop-entry.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibJS/Tests/modules/loop-entry.mjs')
-rw-r--r--Userland/Libraries/LibJS/Tests/modules/loop-entry.mjs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Tests/modules/loop-entry.mjs b/Userland/Libraries/LibJS/Tests/modules/loop-entry.mjs
new file mode 100644
index 0000000000..c5e7f77ee7
--- /dev/null
+++ b/Userland/Libraries/LibJS/Tests/modules/loop-entry.mjs
@@ -0,0 +1,3 @@
+import { aValue, bValue } from "./loop-a.mjs";
+
+export const passed = aValue < bValue;