mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-09 22:36:53 +07:00
9 lines
121 B
Java
9 lines
121 B
Java
// "Cast parameter to 'long'" "true"
|
|
class a {
|
|
void f(Long l, String... s) {}
|
|
void g() {
|
|
f(0L);
|
|
}
|
|
}
|
|
|