Files
openide/java/java-tests/testData/codeInsight/generation/surroundWith/java/SurroundConditionalWithCast_after.java

7 lines
93 B
Java

class Test {
void foo(int a, double b) {
if (((<caret>) (true ? a : b))) {
}
}
}