aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/imports-pos.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/imports-pos.scala')
-rw-r--r--tests/pending/pos/imports-pos.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/pending/pos/imports-pos.scala b/tests/pending/pos/imports-pos.scala
deleted file mode 100644
index f6a55e5e0..000000000
--- a/tests/pending/pos/imports-pos.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-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
-}