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

10 lines
159 B
Java

// "Create Method 'get'" "true"
class W<T> {
}
class C {
void foo () {
W<String> w = new W<String>();
String s = w.<caret>get("");
}
}