Support loading Java records
^KT-43677 In Progress
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
package test;
|
||||
public record GenericRecord<T, E>(T x, E y) {
|
||||
public E y() { return y; }
|
||||
public E y(E n) { return y; }
|
||||
public double z() { return 0.0; }
|
||||
}
|
||||
Reference in New Issue
Block a user