summaryrefslogtreecommitdiff
path: root/test/pos/scoping2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pos/scoping2.scala')
-rw-r--r--test/pos/scoping2.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pos/scoping2.scala b/test/pos/scoping2.scala
index 8fcd71bb8b..39f3ef5f0e 100644
--- a/test/pos/scoping2.scala
+++ b/test/pos/scoping2.scala
@@ -7,7 +7,7 @@ object That {
type T <: J;
trait J {}
}
- type C = A with B {
+ trait C extends A with B {
type T <: I with J;
}
}