blob: 75ddc5dd5ba521a59a1e4f087acf4fc41d7eb52b [file] [log] [blame]
// "Cast 1st 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>2.2, 'd');
}
}