KT-286 Check supertype lists (in progress)

Tests involving multiple inheritance fixed
This commit is contained in:
Andrey Breslav
2011-09-08 15:34:05 +04:00
parent 5cb298c093
commit 71bc41a938
22 changed files with 189 additions and 78 deletions
@@ -1,7 +1,7 @@
class Outer() {
public val s = "xyzzy"
class InnerBase(public val name: String) {
open class InnerBase(public val name: String) {
}
class InnerDerived(): InnerBase(s) {