mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-18 22:42:49 +07:00
9c6aeba5b4
GitOrigin-RevId: 7f72c5f68ab821e728eb0d5152f0910f48035046
15 lines
278 B
Java
15 lines
278 B
Java
// "Cast argument to 'a'" "true-preview"
|
|
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>(a) r);
|
|
}
|
|
}
|
|
|