i18n: test for shortenClassReferences during java fixes

GitOrigin-RevId: 2b813e4b08248b962f1fc1f4cb55dac01c46e7db
This commit is contained in:
Anna Kozlova
2020-07-27 11:23:25 +00:00
committed by intellij-monorepo-bot
parent fe0c147105
commit 0f68daff23
3 changed files with 40 additions and 10 deletions
@@ -0,0 +1,11 @@
package p;
class MyBundle {
static String message(String key) {
return key;
}
}
class a {
void f() {
String s = MyBundle.message("key");
}
}
@@ -0,0 +1,11 @@
package p;
class MyBundle {
static String message(String key) {
return key;
}
}
class a {
void f() {
String s = "x<caret>xxxx";
}
}