summaryrefslogtreecommitdiff
path: root/test-nsc/files/pos/imports.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test-nsc/files/pos/imports.scala')
-rw-r--r--test-nsc/files/pos/imports.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/test-nsc/files/pos/imports.scala b/test-nsc/files/pos/imports.scala
deleted file mode 100644
index 65ea090436..0000000000
--- a/test-nsc/files/pos/imports.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
-} \ No newline at end of file