Files
openide/java/java-tests/testData/refactoring/inlineMethod/InSwitchExpression.java
Anna Kozlova fff2670c05 [java] inline: fix braces in switch branches (IDEA-282769)
GitOrigin-RevId: 41257880f78e6cb7d301e75b8453baeb6780b57d
2021-11-24 07:04:32 +00:00

13 lines
201 B
Java

class X {
enum E {A}
void print(E e) {
switch (e) {
case A -> printT<caret>oInline(e);
}
}
void printToInline(E e) {
System.out.println(e);
}
}