mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 40cd180ca8fdae46a3ea0216ec7b08e82ca22364
9 lines
145 B
Java
9 lines
145 B
Java
// "Convert 1st argument to 'long'" "true-preview"
|
|
class a {
|
|
void f(Long l, String... s) {}
|
|
void g() {
|
|
f(<caret>0, "");
|
|
}
|
|
}
|
|
|