summaryrefslogtreecommitdiff
path: root/test/files/run/t920.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t920.scala')
-rw-r--r--test/files/run/t920.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t920.scala b/test/files/run/t920.scala
index 6a7f122d55..1e12e6ba87 100644
--- a/test/files/run/t920.scala
+++ b/test/files/run/t920.scala
@@ -7,7 +7,7 @@ object Test {
trait Foo extends Test.Foo0 {
def foo : B.this.type = B.this;
}
- class baz extends Baz with Foo {
+ class baz extends Baz with Foo {
override def toString = "baz"
}
Console.println(new baz);