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

type
  TSealedClass = class sealed
  public
    procedure TestAbstract; virtual; abstract;
  end;

begin
end.