blob: 15163cdde1c29b4124e76ebbdfc84db88ec882bf [file] [log] [blame]
// "Cast 2nd parameter to 'char'" "true"
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) {}
void f() {
test(<caret>'d', (char) 0);
}
}