mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 07:11:04 +07:00
f803857dc1
GitOrigin-RevId: 2f6dc7ed7341c851b56a80a9b6404678ac0da0b9
15 lines
318 B
Java
15 lines
318 B
Java
// "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) {}
|
|
private void test(int c, char f) {}
|
|
|
|
void f() {
|
|
test(<caret>0, 0);
|
|
}
|
|
}
|
|
|