Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/explicit2var/beforePrimitive.java
Anna Kozlova 7793b16164 java: replace explicit type with var: disable if TYPE_USE annotated (IDEA-259100)
GitOrigin-RevId: 4096a327d8c8f9f569fd82c2d6684f7f3d2090fe
2021-01-11 10:31:04 +00:00

9 lines
232 B
Java

// "Replace explicit type with 'var'" "true"
class Main {
{
@I <caret>int i = 0;
}
}
@java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE_USE, java.lang.annotation.ElementType.LOCAL_VARIABLE})
@interface I {}