blob: debf02d026f7192e129471c8e9ff2b527bd58112 [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, 0);
}
}