mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
7 lines
150 B
Java
7 lines
150 B
Java
// "Replace with 'y'" "true-preview"
|
|
class X {
|
|
void test(int x, int y) {
|
|
if (x > y) return;
|
|
System.out.println(Math.<caret>max(x, y));
|
|
}
|
|
} |