summaryrefslogtreecommitdiff
path: root/test/files/pos/clsrefine.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/clsrefine.scala')
-rw-r--r--test/files/pos/clsrefine.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/clsrefine.scala b/test/files/pos/clsrefine.scala
index 12f5aa5246..56db9d4c13 100644
--- a/test/files/pos/clsrefine.scala
+++ b/test/files/pos/clsrefine.scala
@@ -15,7 +15,7 @@ trait B extends A {
def g() = f(y1, this);
}
-module test {
+object test {
val b: B { type Y = Int } = new B {
type Y = Int;
val y1 = 1, y2 = 1;