Files
Alexander Udalov 949144e0c0 Report incomplete hierarchy error for deserialized types
#KT-5129 Fixed

Delete a JPS test that was specifically testing that we would not fail in this
situation; now there's a compilation error
2015-09-15 13:11:17 +03:00

8 lines
99 B
Kotlin
Vendored

package test
public open class Super {
public fun foo() {}
}
public open class Sub : Super()