mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-07 07:12:49 +02:00
14 lines
306 B
Plaintext
14 lines
306 B
Plaintext
Program IFSTest;
|
|
type
|
|
TByteArray = array of byte;
|
|
var
|
|
x: TByteARray;
|
|
Begin
|
|
try
|
|
x[0] := 1;
|
|
// will cause an runtime error (Out Of Record Fields Range)
|
|
writeln('Not supposed to be here');
|
|
except
|
|
Writeln('Error, which is ok since we accessed a field outside it''s bounds');
|
|
end;
|
|
End. |