mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
GitOrigin-RevId: 4d7111d369625f7344050f36ead362f37e819852
6 lines
168 B
Java
6 lines
168 B
Java
// "Add 'int' as 1st parameter to method 'x()'" "false"
|
|
record Point2(int x, int y) {
|
|
public static void main(String[] args) {
|
|
new Point2(0, 1).x(1<caret>);
|
|
}
|
|
} |