mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-12 09:31:22 +07:00
9 lines
143 B
Java
9 lines
143 B
Java
// "Convert 1st argument to 'long'" "true-preview"
|
|
class a {
|
|
void f(Long l, String... s) {}
|
|
void g() {
|
|
f(0L, "", "");
|
|
}
|
|
}
|
|
|