lazarus/components/PascalScript/Samples/Kylix/bytearray.rops
martin b65dc1ef59 Adding PascalScript from REM Objects
git-svn-id: trunk@38401 -
2012-08-27 11:02:51 +00:00

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.