mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
16 lines
278 B
Java
16 lines
278 B
Java
class C {
|
|
public static final int A = 4 - 1;
|
|
public static final int B = 4 + 2;
|
|
|
|
void foo(int x) {
|
|
<selection>
|
|
if(x == A + 1)
|
|
bar(A + 1);
|
|
</selection>
|
|
|
|
if(x == B - 2)
|
|
bar(B - 2);
|
|
}
|
|
|
|
void bar(int n) {}
|
|
} |