Files
openide/plugins/java-i18n/testData/lightResolve/SameNameProperty.java
Anna Kozlova b2a9afdc69 i18n: keep associated bundle after UAST conversion (IDEA-233230)
GitOrigin-RevId: 6f50a6b0fe657febb4714b3388e3f604f6dc0f71
2020-02-18 20:57:58 +00:00

8 lines
259 B
Java

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