summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/test/tsealed1.pp
blob: 6b2b73f3a4cc55f11c36c451575722dde95dd6fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ %fail }
{$ifdef fpc}
{$mode objfpc}
{$endif}

type
  TSealedClass = class sealed
  public
  end;

  TSealedDesdentantClass = class(TSealedClass)
  public
  end;

begin
end.