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