Files

11 lines
120 B
Java

class Test {
private int f;
public void bar() {
foo(() -> {f++;});
}
private void foo(Runnable r) {
}
}