mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
9 lines
129 B
Plaintext
9 lines
129 B
Plaintext
class X {
|
|
void testSwitch(int x) {
|
|
if(x >= 0 && x < 10 && x % 2 == 0) {
|
|
<spot>switch(x) {
|
|
|
|
}</spot>
|
|
}
|
|
}
|
|
} |