Componentes.Terceros.RemObj.../official/5.0.35.741/Pascal Script for Delphi/Samples/Kylix/bytearray.rops
2009-02-27 15:16:56 +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.