mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-18 12:03:50 +07:00
9c6aeba5b4
GitOrigin-RevId: 7f72c5f68ab821e728eb0d5152f0910f48035046
15 lines
325 B
Java
15 lines
325 B
Java
// "Cast 1st argument to 'char'" "true-preview"
|
|
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((char) 0, 0);
|
|
}
|
|
}
|
|
|