Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/explicit2var/afterInferred.java

8 lines
140 B
Java

// "Replace explicit type with 'var'" "true"
class Main {
{
var str = m("hello, world");
}
static <T> T m(T t) {return t;}
}