Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/genericCreateFromUsage/after1.java
2014-12-06 12:06:31 +03:00

13 lines
226 B
Java

// "Create method 'get'" "true"
class W<T> {
public T get(T s) {
<selection>return null;</selection>
}
}
class C {
void foo () {
W<String> w = new W<String>();
String s = w.get("");
}
}