mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
14 lines
293 B
Java
14 lines
293 B
Java
// "Cast 2nd 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) {}
|
|
|
|
void f() {
|
|
test(<caret>'d', (char) 0);
|
|
}
|
|
}
|
|
|