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