blob: b77ea3d39f5f5dee2377f52a7e974c31e07afeed [file] [log] [blame]
// "Cast 2nd 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, (double) 0);
}
}