blob: 03de90ced40a64f5baae10a568dccaf94752d0ed [file] [log] [blame]
class Test {
void test() {
I b1 = System::exit;
a(b<caret>1);
}
void a(Object b) {}
interface I {
void i(int i);
}
}