mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
170 B
Plaintext
13 lines
170 B
Plaintext
class MyClass {
|
|
void m() {
|
|
Object o = null;
|
|
Consumer cc = o1 -> {
|
|
System.out.println(o1);
|
|
};
|
|
}
|
|
}
|
|
|
|
interface Consumer {
|
|
void accept(Object o);
|
|
}
|