Hi
Got careless and used "break" where I should use "exit" and got this:
try.pas: In main program: try.pas:7: internal compiler error: in plant_exit_loop, at p/plant.c:651 Please submit a full bug report, with preprocessed source if appropriate. See URL:http://www.gnu-pascal.de/todo.html for instructions.
from this:
program bug; uses gpc; begin if FileExists( Paramstr( ParamCount ) ) then begin writeln('Quitting: output file "', Paramstr( ParamCount ), '" exists'); break; end; end.
gpc version 20060325, based on gcc-4.1.1
Russ