Files
openide/java/java-tests/testData/codeInsight/typing/questionAfterPolyadic_after.java
Tagir Valeev 1f8311c790 [java-completion] IDEA-246986 Add automatic parentheses where it's evident
GitOrigin-RevId: 4be2dd03bc3f9a3b637f6860fb9e747a35491ba4
2020-07-30 10:19:13 +00:00

5 lines
95 B
Java

public class Foo {
void test(int x, boolean b) {
System.out.println(x+(b?<caret>));
}
}