fpc/tests/webtbs/tw25607b.pp
Jonas Maebe 18077d9530 * when determining the best candidates for overloaded method calls, apply
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 -
2016-12-09 13:39:42 +00:00

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.