mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 23:53:48 +07:00
GitOrigin-RevId: 7f72c5f68ab821e728eb0d5152f0910f48035046
14 lines
226 B
Java
14 lines
226 B
Java
// "Cast 1st argument to 'double'" "true-preview"
|
|
class x {}
|
|
class a extends x {
|
|
a(a a) {}
|
|
a(x x) {}
|
|
a(int i, double d) {}
|
|
a(double d, int i) {}
|
|
|
|
void f(Runnable r) {
|
|
new a(<caret>1.0, 1);
|
|
}
|
|
}
|
|
|