mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 4d6a5487576dbbc4aca9c89b067eec8218aff686
14 lines
205 B
Java
14 lines
205 B
Java
// "Adapt 1st argument using 'Collections.singleton()'" "true-preview"
|
|
import java.util.*;
|
|
|
|
class Test {
|
|
|
|
void method(Set<Long> set, double val) {
|
|
|
|
}
|
|
|
|
void m(long l) {
|
|
method(<caret>l, l);
|
|
}
|
|
|
|
} |