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