mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
15 lines
281 B
Java
15 lines
281 B
Java
// "Cast 1st argument to 'double'" "true-preview"
|
|
class a {
|
|
void test() {}
|
|
void test(int i) {}
|
|
void test(String s) {}
|
|
void test(Object o) {}
|
|
void test(int i,double d) {}
|
|
void test(double d,int i) {}
|
|
|
|
void f() {
|
|
test(<caret>0, 0);
|
|
}
|
|
}
|
|
|