summaryrefslogtreecommitdiff
path: root/test/files/pos/imports.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/imports.scala')
-rw-r--r--test/files/pos/imports.scala18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/files/pos/imports.scala b/test/files/pos/imports.scala
new file mode 100644
index 0000000000..f13a3a4368
--- /dev/null
+++ b/test/files/pos/imports.scala
@@ -0,0 +1,18 @@
+package test;
+
+
+
+import java.lang.{System => S}
+
+module test {
+ import S.out.{print => p, println => print}
+
+ val foo = 1;
+
+ p("hello"); print("world"); S.out.println("!");
+ S.out.flush();
+}
+module test1 {
+ import test._;
+ foo
+} \ No newline at end of file