Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/wrapAdapterCall/beforeSet.java
Tagir Valeev 49f4397ba0 [java-intentions] More preview tests
GitOrigin-RevId: 4d6a5487576dbbc4aca9c89b067eec8218aff686
2022-07-29 17:55:15 +00:00

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);
}
}