blob: e8dea47092d7157e4314c49cbec98c46b7dd6207 [file] [log] [blame]
class Test {
void test() {
a(System::exit);
}
void a(I b) {}
interface I {
void i(int i);
}
}