mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
12 lines
125 B
Plaintext
12 lines
125 B
Plaintext
class Test {
|
|
void test() {
|
|
a((I) System::exit);
|
|
}
|
|
|
|
void a(Object b) {}
|
|
|
|
interface I {
|
|
void i(int i);
|
|
}
|
|
}
|