[tests] renames new switch completion test and test data

GitOrigin-RevId: 0df47babf3095049c85b7acb0feedbf5d70dc205
This commit is contained in:
Roman Shevchenko
2019-07-05 01:10:36 +03:00
committed by intellij-monorepo-bot
parent f5cb5a77a7
commit 2ac6446259
5 changed files with 3 additions and 3 deletions
@@ -0,0 +1,11 @@
public class ConstConfig {
int test(boolean aaaaaaaa) {
Boolean b;
if ((b = switch (0) {
case 1: {
yield aaaaaaaa<caret>;
}
default: yield false;
}));
}
}