mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
9 lines
131 B
Java
9 lines
131 B
Java
class C {
|
|
private static final int VALUE = 2;
|
|
|
|
void m(int a, int b) {}
|
|
|
|
void m2() {
|
|
m(1, <caret>VALUE);
|
|
}
|
|
} |