mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 18:13:59 +07:00
11 lines
120 B
Java
11 lines
120 B
Java
class Test {
|
|
private int f;
|
|
|
|
public void bar() {
|
|
foo(() -> {f++;});
|
|
}
|
|
|
|
private void foo(Runnable r) {
|
|
}
|
|
}
|