summaryrefslogtreecommitdiff
path: root/tests/test/terecs12b.pp
blob: c98995d9d4957a7ee464a4bb22fa339955dcfe8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ %FAIL }
{ %NORUN }
program terecs12b;

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

procedure Test;
type
  TRecord = record
  var
    TestField: Integer;
    property TestProperty: Integer read TestField;
  end;
begin
end;

begin
end.