mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 16:21:49 +07:00
GitOrigin-RevId: 55ef9a7d7fa7b96a8f54e91801060b7c3d44dd65
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) {
|
|
}
|
|
} |