mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 21:07:58 +02:00

the scope penalty relative to the nearest symtable that contains one of the applicable overloads, rather than relative to the nearest symtable that simply contains a method with this name (based on patch by Maciej Izak, mantis #25607) git-svn-id: trunk@35089 -
64 lines
1.0 KiB
ObjectPascal
Executable File
64 lines
1.0 KiB
ObjectPascal
Executable File
program E02;
|
|
|
|
{$IFDEF FPC}
|
|
{$MODE DELPHI}
|
|
{$ENDIF}
|
|
{$APPTYPE CONSOLE}
|
|
|
|
type
|
|
TA = class
|
|
constructor Create(A: Integer = 0); overload;
|
|
end;
|
|
|
|
TB = class(TA)
|
|
constructor Create(A: Integer); overload;
|
|
end;
|
|
|
|
TClassB = class of TB;
|
|
|
|
var
|
|
tacalled,
|
|
tbcalled: boolean;
|
|
|
|
constructor TA.Create(A: Integer = 0);
|
|
begin
|
|
WriteLn('TA.Create');
|
|
tacalled:=true;
|
|
end;
|
|
|
|
constructor TB.Create(A: Integer);
|
|
begin
|
|
WriteLn('TB.Create');
|
|
tbcalled:=true;
|
|
end;
|
|
|
|
var
|
|
B: TB;
|
|
ClassB: TClassB;
|
|
begin
|
|
B := TB.Create; // TA.Create (VMT is not used
|
|
// compiler can determine)
|
|
if not tacalled then
|
|
halt(1);
|
|
if tbcalled then
|
|
halt(2);
|
|
tacalled:=false;
|
|
|
|
B.Create; // call TA.Create because of VMT rules
|
|
B.Free;
|
|
if not tacalled then
|
|
halt(3);
|
|
if tbcalled then
|
|
halt(4);
|
|
tacalled:=false;
|
|
|
|
ClassB := TB;
|
|
B := ClassB.Create; // call TA.Create because of VMT rules
|
|
B.Free;
|
|
if not tacalled then
|
|
halt(5);
|
|
if tbcalled then
|
|
halt(6);
|
|
tacalled:=false;
|
|
end.
|