mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
141 B
Java
13 lines
141 B
Java
class Test {
|
|
void test() {
|
|
I b1 = System::exit;
|
|
a(b<caret>1);
|
|
}
|
|
|
|
void a(Object b) {}
|
|
|
|
interface I {
|
|
void i(int i);
|
|
}
|
|
}
|