no message

This commit is contained in:
florian 2001-08-22 21:18:08 +00:00
parent 032023f8de
commit 1b99b47d7c
2 changed files with 43 additions and 0 deletions

23
tests/tbs/tb0374.pp Normal file
View File

@ -0,0 +1,23 @@
{ %VERSION=1.1 }
{$mode delphi}
type
tc1 = class
procedure a;overload;virtual;
end;
tc2 = class(tc1)
procedure a;override;
end;
procedure tc1.a;
begin
end;
procedure tc2.a;
begin
end;
begin
end.

20
tests/tbs/tb0375.pp Normal file
View File

@ -0,0 +1,20 @@
{ %VERSION=1.1 }
{$mode objfpc}
type
i1 = interface
procedure intfp;
end;
tc1 = class(tobject,i1)
procedure i1.intfp = p;
procedure p;
end;
procedure tc1.p;
begin
end;
begin
end.