Componentes.Terceros.RemObj.../internal/6.0.43.801/1/RemObjects Samples/Pascal Script for Delphi/Kylix/bytearray.rops
2010-01-29 16:17:43 +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.