mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-06 08:12:42 +02:00
9 lines
157 B
Plaintext
9 lines
157 B
Plaintext
Program IFSTest;
|
|
type
|
|
TByteArray = array of byte;
|
|
var
|
|
x: TByteARray;
|
|
Begin
|
|
x[0] := 1;
|
|
// will cause an runtime error (Out Of Record Fields Range)
|
|
End. |