mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 17:22:51 +07:00
49f4397ba0
GitOrigin-RevId: 4d6a5487576dbbc4aca9c89b067eec8218aff686
9 lines
149 B
Java
9 lines
149 B
Java
// "Wrap using 'Long.valueOf()'" "true-preview"
|
|
public class Test {
|
|
void ba(Long l) {
|
|
fa(l, Long.valueOf("42"));
|
|
}
|
|
|
|
void fa(Long... l){}
|
|
}
|