Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/explicit2diamond/afterReformatArgs.java
2015-03-24 21:04:04 +01:00

9 lines
166 B
Java

// "Replace with <>" "true"
class Test<T> {
public Test(String s1, String s2) {}
Test<String> s = new Test<>("s1",
"s2");
}