Igor Pro allows code before the first case in a switch statement but this code is never executed.
switch(i)
print "this would never be executed", i
case 1:
print "one"
break
endswitch
Similarly to #35, I would get rid of such code as it only confuses the reader.