bug0296.pp 146 B

1234567891011
  1. function test : string;
  2. begin
  3. test:='This should not be printed';
  4. exit('this should be printed');
  5. end;
  6. begin
  7. writeln(test);
  8. end.