Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/genericCreateFromUsage/after1.java
2010-06-25 12:46:40 +04:00

13 lines
301 B
Java

// "Create Method 'get'" "true"
class W<T> {
public T get(T s) {
<selection>return null; //To change body of created methods use File | Settings | File Templates.</selection>
}
}
class C {
void foo () {
W<String> w = new W<String>();
String s = w.get("");
}
}