Files
T
Alexander Udalov 4128655893 Report incomplete hierarchy error
This is the case when you reference a Java class in Kotlin whose superclass is
not resolved. Previously this fact was swallowed by LazyJavaClassDescriptor
leading to mysterious compilation errors

 #KT-5129 Fixed
2015-02-09 21:14:02 +03:00

6 lines
66 B
Kotlin
Vendored

import test.Sub
class SubSub : Sub()
fun bar() = SubSub().foo()