mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00
36 lines
356 B
ObjectPascal
36 lines
356 B
ObjectPascal
{$mode objfpc}
|
|
type
|
|
TC1 = class
|
|
strict protected
|
|
procedure P;
|
|
end;
|
|
|
|
TH1 = class helper for TC1
|
|
public
|
|
procedure Q;
|
|
end;
|
|
|
|
var
|
|
b: boolean;
|
|
|
|
procedure TC1.P;
|
|
begin
|
|
b:=true;
|
|
end;
|
|
|
|
procedure TH1.Q;
|
|
begin
|
|
inherited P;
|
|
end;
|
|
|
|
var
|
|
c: tc1;
|
|
begin
|
|
b:=false;
|
|
c:=tc1.create;
|
|
c.q;
|
|
c.free;
|
|
if not b then
|
|
halt(1);
|
|
end.
|