summaryrefslogtreecommitdiff
path: root/test/files/neg/t4134.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t4134.scala')
-rw-r--r--test/files/neg/t4134.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/neg/t4134.scala b/test/files/neg/t4134.scala
index 678e4806ef..18f813dd1d 100644
--- a/test/files/neg/t4134.scala
+++ b/test/files/neg/t4134.scala
@@ -3,16 +3,16 @@
trait T1 {
def f: String
-}
+}
trait T2 extends T1 {
abstract override def f: String = "goo"
def something = super.f // So the "abstract override" is needed
-}
+}
trait Q1 {
def f: String = "bippy"
-}
+}
//trait T3 extends Q1 with T2 {
trait T3 extends T2 with Q1 {