summaryrefslogtreecommitdiff
path: root/test/scaladoc/run/SI-5373.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/scaladoc/run/SI-5373.scala')
-rw-r--r--test/scaladoc/run/SI-5373.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/scaladoc/run/SI-5373.scala b/test/scaladoc/run/SI-5373.scala
index 0062abbb2a..65cf8baff5 100644
--- a/test/scaladoc/run/SI-5373.scala
+++ b/test/scaladoc/run/SI-5373.scala
@@ -12,12 +12,12 @@ object Test extends ScaladocModelTest {
def foo = ()
}
- trait B {
+ trait B extends A {
@bridge()
def foo = ()
}
- class C extends A with B
+ class C extends B
}
"""