Ich glaube Robert meint diesen Effekt:
Delphi-Quellcode:
case foo of
23: //..
42: if Bar then SomeAction;
else AnotherAction
end;
versus
Delphi-Quellcode:
case foo of
23: //..
42: if Bar then SomeAction //<--
else AnotherAction
end;
Der wohl einzige Grund, weshalb überhaupt ein ";" vor dem "else" ungültig ist...?