mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-27 19:10:14 +02:00
* fixed
This commit is contained in:
parent
5d57010458
commit
4cd1fca062
@ -3,18 +3,20 @@
|
|||||||
{ e-mail: marco@freepascal.org }
|
{ e-mail: marco@freepascal.org }
|
||||||
{$mode Delphi}
|
{$mode Delphi}
|
||||||
type
|
type
|
||||||
someprocedureofobjectype=procedure (sender:tobject) OF
|
someprocedureofobjectype=procedure (sender:tobject) OF OBJECT;
|
||||||
OBJECT;
|
|
||||||
|
|
||||||
a=class
|
a=class
|
||||||
protected
|
protected
|
||||||
fondisplay : someprocedureofobjectype;
|
fondisplay : someprocedureofobjectype;
|
||||||
end;
|
public
|
||||||
|
a:longint;
|
||||||
|
end;
|
||||||
|
|
||||||
b=class(A)
|
b=class(A)
|
||||||
protected
|
protected
|
||||||
fondisplay : someprocedureofobjectype;
|
fondisplay : someprocedureofobjectype;
|
||||||
end;
|
public
|
||||||
|
a:longint;
|
||||||
|
end;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
end.
|
end.
|
||||||
|
Loading…
Reference in New Issue
Block a user