blob: 7540d4a4b59d16d883cf5f612fe7cd807dbb5623 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{ Source provided for Free Pascal Bug Report 3241 }
{ Submitted by "Mattias Gaertner" on 2004-08-09 }
{ e-mail: mattias@freepascal.org }
program TwoDefaults;
{$mode objfpc}{$H+}
uses
Classes, SysUtils;
type
TMyParentClass = class
private
function GetA1(Index: integer): integer;
public
property A1[Index: integer]: integer read GetA1; default;
end;
TMyClass = class(TMyParentClass)
private
function GetA2(Index: integer): integer;
public
property A2[Index: integer]: integer read GetA2; default;
end;
{ TMyClass }
function TMyParentClass.GetA1(Index: integer): integer;
begin
Result:=0;
end;
function TMyClass.GetA2(Index: integer): integer;
begin
Result:=0;
end;
begin
end.
|