mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-28 14:57:43 +07:00
44f751215e
GitOrigin-RevId: 2e9ca6999d9003e1d0d7392de6713593722238f2
9 lines
132 B
Java
9 lines
132 B
Java
// "Cast 1st argument to 'long'" "true"
|
|
class a {
|
|
void f(Long l, String... s) {}
|
|
void g() {
|
|
f(0L, "", "");
|
|
}
|
|
}
|
|
|