Support loading Java records

^KT-43677 In Progress
This commit is contained in:
Denis.Zharkov
2020-11-23 16:02:26 +03:00
parent f25b7672a7
commit 513f7177ca
45 changed files with 688 additions and 61 deletions
+6
View File
@@ -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; }
}