mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 07:20:55 +07:00
10 lines
139 B
Java
10 lines
139 B
Java
// "Create method 'f'" "true"
|
|
class Test {
|
|
{
|
|
long l = f(1) + f(2);
|
|
}
|
|
|
|
private long f(int i) {
|
|
return 0;
|
|
}
|
|
} |