mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 20:30:42 +07:00
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>);
|
|
}
|
|
} |