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