blob: fa04914b21ca4fe117cb1aafb87b76f11f0c608a [file] [log] [blame]
// "Cast parameter to 'int'" "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);
}
}