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