Files
2024-12-02 18:59:47 +00:00

8 lines
189 B
Java

public class WithoutConflictsForGet {
public static void main(String[] args) {
System.out.println(new Foo2("1", "2").b());
}
public record Foo2(String a<caret>, String b) {
}
}