aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0599.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t0599.scala')
-rw-r--r--tests/pos/t0599.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pos/t0599.scala b/tests/pos/t0599.scala
index 885159af6..6445fa9fb 100644
--- a/tests/pos/t0599.scala
+++ b/tests/pos/t0599.scala
@@ -7,8 +7,8 @@ abstract class FooA {
}
}
trait FooB extends FooA {
- type A <: Ax;
- trait Ax extends super.Ax { def xxx : Int; }
+ type A <: Axx;
+ trait Axx extends super.Ax { def xxx : Int; }
abstract class InnerB extends InnerA {
// type B <: A;
val a : A = doB;