mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
179 B
Java
17 lines
179 B
Java
public class A {
|
|
void f<caret>oo(B b) {
|
|
b.foo("");
|
|
if (false) {
|
|
foo(b);
|
|
}
|
|
}
|
|
}
|
|
|
|
class B {
|
|
void foo(String s) {
|
|
System.out.println(s);
|
|
}
|
|
}
|
|
|
|
|