mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
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;
|
|
}
|
|
} |