summaryrefslogtreecommitdiff
path: root/test/files/pos/bug360.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug360.scala')
-rw-r--r--test/files/pos/bug360.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/bug360.scala b/test/files/pos/bug360.scala
index 9c5f243365..0860eb8ee3 100644
--- a/test/files/pos/bug360.scala
+++ b/test/files/pos/bug360.scala
@@ -5,7 +5,7 @@ abstract class Bug360A requires Bug360C {
}
trait Bug360B requires Bug360C {
object d {
- System.out.println(f);
+ Console.println(f);
}
}
abstract class Bug360C extends Bug360A with Bug360B;