mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
18 lines
272 B
ObjectPascal
18 lines
272 B
ObjectPascal
{$MODE objfpc}
|
|
program FileExc;
|
|
uses SysUtils, Classes;
|
|
var
|
|
f: TFileStream;
|
|
begin
|
|
try
|
|
f := TFileStream.Create('a nonexistent file', fmOpenRead);
|
|
except
|
|
on e: Exception do begin
|
|
f.Free;
|
|
halt(0);
|
|
end;
|
|
end;
|
|
writeln('Error');
|
|
halt(1);
|
|
end.
|