Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/beforeExtendsFinalNested.java
Tagir Valeev 7315560413 Fixes according to review IDEA-CR-1967
GitOrigin-RevId: 291843a9ecd55948c4f94844aec63c6057d1cb40
2020-07-02 04:37:52 +00:00

11 lines
212 B
Java

// "Create method 'getPreloadKeys'" "true"
import java.util.*;
class Foo<T>{
void test(Foo<String> f){
f.foo(getPrel<caret>oadKeys());
}
void foo(Collection<Collection<? extends T>> c) {}
}