Files
openide/plugins/java-i18n/testData/lightResolve/LocalVar.java
Tagir Valeev 3f121f887e [java-i18n] Allow properties in assignment contexts
Regression after [java-i18n] Reuse AnnotationContext for finding the PropertyKey annotation / Tagir Valeev / 434562521bc15769ff6e543e341ea95e904fee4e

GitOrigin-RevId: f3c11998fbee29fc688dab5ac221f145d1735f1a
2020-09-11 11:00:58 +00:00

6 lines
191 B
Java

class PropertyRef {
public static void main(String[] args) {
@org.jetbrains.annotations.PropertyKey(resourceBundle = "Bundle1") String property;
property = "sam<caret>e.name";
}
}