2018-05-19 00:03:05 -04:00

10 lines
134 B
JavaScript
Executable File

function bar(a) {
switch (a) {
case 2:
break;
case 1:
break;
//no default
}
}