mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
GitOrigin-RevId: 55ef9a7d7fa7b96a8f54e91801060b7c3d44dd65
8 lines
167 B
Java
8 lines
167 B
Java
public class WithoutConflictsForGet {
|
|
public static void main(String[] args) {
|
|
System.out.println(new Foo2("2").b());
|
|
}
|
|
|
|
public record Foo2(String b) {
|
|
}
|
|
} |