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