mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-18 07:15:51 +07:00
10 lines
84 B
Java
10 lines
84 B
Java
class A {
|
|
int f() {
|
|
return 0;
|
|
}
|
|
|
|
void m() {
|
|
f<caret>();
|
|
f();
|
|
}
|
|
} |