tb0272.pp 241 B

123456789101112131415
  1. { %OPT=-Sen }
  2. { %RESULT=217 }
  3. { Old file: tbs0318.pp }
  4. {$mode objfpc}
  5. uses sysutils;
  6. { The exception is used in the raise statement, so no Note should be thrown }
  7. var
  8. e : exception;
  9. begin
  10. e:=exception.create('test');
  11. raise e;
  12. end.