afe3fdfd77
git-svn-id: http://code.remobjects.com/svn/pascalscript@1 5c9d2617-0215-0410-a2ee-e80e04d1c6d8
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. |