mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
27 lines
385 B
ObjectPascal
27 lines
385 B
ObjectPascal
{$mode objfpc}
|
|
|
|
program testlist;
|
|
uses
|
|
Sysutils,
|
|
Classes;
|
|
var
|
|
l: TList;
|
|
IsCaught: boolean;
|
|
|
|
begin
|
|
L:= TList.Create;
|
|
IsCaught:=false;
|
|
Try
|
|
WriteLn(LongInt(L[0]));{L[0] not exist, ==> access violation}
|
|
L.Free;
|
|
Except
|
|
on eListError do
|
|
IsCaught:=true;
|
|
end;
|
|
If not IsCaught then
|
|
begin
|
|
Writeln('Error in TList');
|
|
Halt(1);
|
|
end;
|
|
end.
|