mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 14945eb9ea25a46005d9bfb77bf8c525d9e142f1
6 lines
170 B
Java
6 lines
170 B
Java
// "Make 'VarArgMismatch2' take parameter of type 'int[]' here" "true-preview"
|
|
record VarArgMismatch2(int[] x) {
|
|
public VarArgMismatch2(int[] x) {
|
|
this.x = x;
|
|
}
|
|
} |