Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/beforeWhenExpression.java
Andrey Cherkasov 4bbd7cf012 Predict boolean type for 'when' expression of switch pattern
IDEA-274106

GitOrigin-RevId: 3f41806bc5eceea7efa2c10bc149f231b4d42262
2022-11-07 03:40:28 +00:00

9 lines
215 B
Java

// "Create method 'isEmpty' in 'Main'" "true-preview"
class Main {
void foo(Object obj) {
switch (obj) {
case String s when isEmpt<caret>y(s) -> {}
default -> {}
}
}
}