mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
Support mapping between Java and Kotlin reflection objects
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
public class javaFields {
|
||||
public final int i;
|
||||
public String s;
|
||||
|
||||
public javaFields(int i, String s) {
|
||||
this.i = i;
|
||||
this.s = s;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user