aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/es6-circular1.js
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/systemjs/test/tests/es6-circular1.js')
-rw-r--r--thirdparty/systemjs/test/tests/es6-circular1.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/thirdparty/systemjs/test/tests/es6-circular1.js b/thirdparty/systemjs/test/tests/es6-circular1.js
new file mode 100644
index 000000000..2cbd289ad
--- /dev/null
+++ b/thirdparty/systemjs/test/tests/es6-circular1.js
@@ -0,0 +1,10 @@
+import {c} from './es6-circular2.js';
+export var q;
+export var r;
+export function p() {
+ if (q)
+ r = c;
+ else
+ q = c;
+}
+p();