mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
8 lines
189 B
Java
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) {
|
|
}
|
|
} |