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