tbs0318.pp 198 B

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