summaryrefslogtreecommitdiff
path: root/tests/test/tclass13d.pp
blob: 36913defa5044d74f7b63f3f90bc9c4672df9e10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ %norun }
{$mode delphi}

type
  TObj = class
  const
    Val = 1;
    V1: Integer = Val;
    V2: Integer = TObj.Val;
  end;

begin
end.