Hi, with version 1.4 I encountered a different behavior for calling <SomeJavaClassExtendsGenericInterface>::class.supertypes. With V1.4 supertypes returns "Any", before only the GenericInterface. Is this a bug?
Copy code
public interface GenericInterface<T> {
void someFun(T input);
}
Copy code
public class JavaClassWithGenericInterface implements GenericInterface<String> {
@Override
public void someFun(String input) {
}
}