summaryrefslogtreecommitdiff
path: root/test/files/pos/compile.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/compile.scala')
-rw-r--r--test/files/pos/compile.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/compile.scala b/test/files/pos/compile.scala
index 3979c9737a..f7ada3193c 100644
--- a/test/files/pos/compile.scala
+++ b/test/files/pos/compile.scala
@@ -138,7 +138,7 @@ trait Test3A[T] {
def fun: T = fun;
}
-class Test3B with Test3A[Test3Foo];
+class Test3B extends Test3A[Test3Foo];
trait Test3M extends Test3A[Test3Foo] {
override def fun: Test3Foo = super.fun;