aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/customArgs
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2017-01-29 17:54:30 +1100
committerGuillaume Martres <smarter@ubuntu.com>2017-01-29 14:44:30 +0100
commit56fb15888fb98e3a6a535f5734bb8ce82fcd76c3 (patch)
treec1e01cce8a76a5e66ba2a54472bc899ae41ca405 /tests/neg/customArgs
parent6e8933ccc40bbfe1a92c32c2d8314fd6facef12a (diff)
downloaddotty-56fb15888fb98e3a6a535f5734bb8ce82fcd76c3.tar.gz
dotty-56fb15888fb98e3a6a535f5734bb8ce82fcd76c3.tar.bz2
dotty-56fb15888fb98e3a6a535f5734bb8ce82fcd76c3.zip
Fix #1750: Handle illegal class overrides better
Illegal class overrides are fundamentally at odds with the way dotty represents types and therefore can cause lots of low-level problems. Two measures in this commit First, we detect direct illegal class overrides on completion instead of during RefChecks. Break the override by making the previously overriding type private. This fixes i1750.scala, but still fails for indirect overrides between two unrelated outer traits/classes that are inherited by the same class or trait. We fix this by catching the previously thrown ClassCastException in both ExtractAPI and RefChecks. Test case for indirect overrides is in i1750a.scala.
Diffstat (limited to 'tests/neg/customArgs')
-rw-r--r--tests/neg/customArgs/overrideClass.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/neg/customArgs/overrideClass.scala b/tests/neg/customArgs/overrideClass.scala
index 803d97dd9..431b846d9 100644
--- a/tests/neg/customArgs/overrideClass.scala
+++ b/tests/neg/customArgs/overrideClass.scala
@@ -8,8 +8,7 @@
}
trait FooB extends FooA {
type A <: Ax;
- trait Ax extends super.Ax { def xxx : Int; } // error: cyclic inheritance: trait Ax extends itself
- // (Note that inheriting a class of the same name is no longer allowed)
+ trait Ax extends super.Ax { def xxx : Int; } // error: cyclic inheritance: trait Ax extends itself) // error: class definitions cannot be overridden
abstract class InnerB extends InnerA {
// type B <: A;
val a : A = doB;