mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 05:20:30 +07:00
GitOrigin-RevId: 98fcbb3b793ebfcfa636ac7d27ef21158c64eee7
16 lines
216 B
Java
16 lines
216 B
Java
class X {
|
|
private int foo(Runnable r) {
|
|
return 1;
|
|
}
|
|
|
|
public int boo(int a) {
|
|
return a;
|
|
}
|
|
|
|
public class Inner {
|
|
public void run() {
|
|
int a = ((X.this.boo(foo(() -> {
|
|
}))));
|
|
}
|
|
}
|
|
} |