summaryrefslogtreecommitdiff
path: root/test/files/pos/test4refine.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/test4refine.scala')
-rw-r--r--test/files/pos/test4refine.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/test4refine.scala b/test/files/pos/test4refine.scala
index ad68bc891a..6710962934 100644
--- a/test/files/pos/test4refine.scala
+++ b/test/files/pos/test4refine.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;
@@ -25,7 +25,7 @@ abstract class O() {
val j:I { type Y = X } = null;
}
-module o extends O() {
+object o extends O() {
type X = C;
def main = {