Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/explicit2var/beforeNewArrayExpression.java
Anna Kozlova c5e8fb5b98 explicit -> var: preserve comments
found by property testing

GitOrigin-RevId: c626ca0f4039927c59e7acae5c44a38fb0d31f35
2020-03-19 09:32:07 +00:00

8 lines
142 B
Java

// "Replace explicit type with 'var'" "true"
class Main {
{
@Anno <caret>String//c1
[] args = new String[42];
}
}
@interface Anno {}