i18n: try choice format when ternary is used in concatenation (IDEA-246848)

GitOrigin-RevId: 2f4592ad2ee277075a72b2debc71d3e470084d0b
This commit is contained in:
Anna Kozlova
2020-07-29 10:43:44 +00:00
committed by intellij-monorepo-bot
parent 5dbb404e84
commit 2022bfbf66
5 changed files with 72 additions and 3 deletions
@@ -0,0 +1,5 @@
class MyTest {
void f(boolean prefix){
String s = "Not a valid java identifier<caret> part in " + (prefix ? "prefix" : "suffix");
}
}