blob: 33ca98eb7ae98d1670dece23047a95ab1a94c713 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ Source provided for Free Pascal Bug Report 1203 }
{ Submitted by "Marco van de Voort" on 2000-10-29 }
{ e-mail: marco@freepascal.org }
{$mode Delphi}
type
someprocedureofobjectype=procedure (sender:tobject) OF OBJECT;
a=class
protected
fondisplay : someprocedureofobjectype;
public
a:longint;
end;
b=class(A)
protected
fondisplay : someprocedureofobjectype;
public
a:longint;
end;
begin
end.
|