mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-10 23:58:17 +02:00
15 lines
128 B
ObjectPascal
15 lines
128 B
ObjectPascal
{ %fail }
|
|
|
|
{ should not crash the compiler }
|
|
|
|
type
|
|
tr = record
|
|
a,b: longint;
|
|
end;
|
|
|
|
var
|
|
r: tr;
|
|
begin
|
|
r[0].a:=1;
|
|
end.
|