mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
10 lines
147 B
Java
10 lines
147 B
Java
// "Create method 'f'" "true-preview"
|
|
class Test {
|
|
{
|
|
long l = f(1) + f(2);
|
|
}
|
|
|
|
private long f(int i) {
|
|
return 0;
|
|
}
|
|
} |