aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/imports-pos.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/imports-pos.scala')
-rw-r--r--tests/untried/pos/imports-pos.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/untried/pos/imports-pos.scala b/tests/untried/pos/imports-pos.scala
new file mode 100644
index 000000000..f6a55e5e0
--- /dev/null
+++ b/tests/untried/pos/imports-pos.scala
@@ -0,0 +1,16 @@
+package test;
+
+import java.lang.{System => S}
+
+object test {
+ import S.out.{print => p, println => print}
+
+ val foo = 1;
+
+ p("hello"); print("world"); S.out.println("!");
+ S.out.flush();
+}
+object test1 {
+ import test._;
+ foo
+}