mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
8 lines
151 B
Plaintext
8 lines
151 B
Plaintext
class Foo {
|
|
void foo(String s) {
|
|
Runnable r = () -> {
|
|
Runnable r2 = () -> System.out.println(s.toString());
|
|
};
|
|
}
|
|
}
|