blob: 922c8c00bdd2f455870a14b813418755a0afdd5f [file] [log] [blame]
public class CompletionAfterSwitch {
int x;
void foo() {
switch (x) {
case 0:
x += 1;
break;
}
bar
}
void bar() {
}
}