Files
openide/java/java-tests/testData/codeInsight/completion/normal/InsideYieldInSwitchExpression.java
Roman Shevchenko 2ac6446259 [tests] renames new switch completion test and test data
GitOrigin-RevId: 0df47babf3095049c85b7acb0feedbf5d70dc205
2019-07-05 01:10:36 +03:00

11 lines
234 B
Java

public class ConstConfig {
int test(boolean aaaaaaaa) {
Boolean b;
if ((b = switch (0) {
case 1: {
yield aaaa<caret>;
}
default: yield false;
}));
}
}