blob: 7221cacdae529fb159fa985327b3ddc130103ca2 [file] [log] [blame]
// "Cast parameter to 'a'" "true"
class a {
void test() {}
void test(int i) {}
void test(String s) {}
void test(a o) {}
void test(int i,double d) {}
void test(double d,int i) {}
void f(Runnable r) {
test(<caret>r);
}
}