mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Fix supertypes for reflected Java classes, always include j.l.Object
equals/hashCode/toString had not appeared in Java classes' "members" because of this
This commit is contained in:
10
compiler/testData/codegen/boxWithJava/reflection/javaClassGetFunctions/J.java
vendored
Normal file
10
compiler/testData/codegen/boxWithJava/reflection/javaClassGetFunctions/J.java
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
public class J {
|
||||
public J() {
|
||||
}
|
||||
|
||||
public void member(String s) {
|
||||
}
|
||||
|
||||
public static void staticMethod(int x) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user