summaryrefslogtreecommitdiff
path: root/test/files/pos/test4.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/test4.scala')
-rw-r--r--test/files/pos/test4.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/test4.scala b/test/files/pos/test4.scala
index 0bbb6f97a0..48949b7a7f 100644
--- a/test/files/pos/test4.scala
+++ b/test/files/pos/test4.scala
@@ -2,7 +2,7 @@ trait C {}
trait D {}
trait E {}
-module test {
+object test {
def c: C = c;
def d: D = d;
def e: E = e;
@@ -22,7 +22,7 @@ class O[X]() {
val j:I[X] = null;
}
-module o extends O[C]() {
+object o extends O[C]() {
def main = {
val s: S = null;