blob: de61decb47e9bff310190f2ba30a5dbdac91cf8a [file] [log] [blame]
// "Cast 1st parameter to 'double'" "true"
class a {
void test() {}
void test(int i) {}
void test(String s) {}
void test(Object o) {}
void test(int i,double d) {}
void test(double d,int i) {}
void f() {
test(<caret>0, 0);
}
}