Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/explicit2var/afterDiamond.java
Anna Kozlova 681bfe7ba6 enable explicit type -> var for diamonds (IDEA-188771)
expand diamonds and spare on explicit type declaration
2018-06-19 15:50:48 +03:00

8 lines
124 B
Java

// "Replace explicit type with 'var'" "true"
class Main {
{
var i = new A<String>();
}
static class A<T> {}
}