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