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

7 lines
149 B
Java

// "Replace explicit type with 'var'" "true"
class Main {
void m(String[] args) {
for (@Anno var arg : args) ;
}
}
@interface Anno {}