summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/test/tabsvr4.pp
blob: bc328fd7720cf58b6e6aeeb6bcc0488a992d022c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ %fail }

{$ifdef fpc}
{$mode delphi}
{$endif}

type
  ta = record
    a: byte;
  end;
  pa = ^ta;

var
  a: pa;
  b: byte absolute a.a;
begin
end.