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 35f6a94b03..9c5f243365 100644
--- a/test/files/pos/bug360.scala
+++ b/test/files/pos/bug360.scala
@@ -3,7 +3,7 @@
abstract class Bug360A requires Bug360C {
def f: String = "hello";
}
-trait Bug360B: Bug360C {
+trait Bug360B requires Bug360C {
object d {
System.out.println(f);
}