tb0221.pp 128 B

1234567891011121314
  1. { %fail }
  2. { should not crash the compiler }
  3. type
  4. tr = record
  5. a,b: longint;
  6. end;
  7. var
  8. r: tr;
  9. begin
  10. r[0].a:=1;
  11. end.