mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
14 lines
157 B
Java
14 lines
157 B
Java
import java.util.function.Consumer;
|
|
|
|
public class Subst {
|
|
void test1() {
|
|
test2();
|
|
}
|
|
|
|
private static void bar(Object o) {
|
|
|
|
}
|
|
|
|
void test2() {}
|
|
}
|