mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
15 lines
267 B
Java
15 lines
267 B
Java
// "Cast parameter to 'a'" "true"
|
|
class a {
|
|
void test() {}
|
|
void test(int i) {}
|
|
void test(String s) {}
|
|
void test(a o) {}
|
|
void test(int i,double d) {}
|
|
void test(double d,int i) {}
|
|
|
|
void f(Runnable r) {
|
|
test(<caret>r);
|
|
}
|
|
}
|
|
|