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