blob: d9642fc041e9b9bbe6680b2425bc9f7958217fea [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>(int) 2.2);
}
}