4128655893
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
8 lines
90 B
Java
Vendored
8 lines
90 B
Java
Vendored
package test;
|
|
|
|
public class Super {
|
|
public String foo() {
|
|
return "!";
|
|
}
|
|
}
|