* new bug

This commit is contained in:
peter 2004-12-26 16:28:03 +00:00
parent ced6bf20cd
commit c30d55ce5e

21
tests/webtbf/tw3480.pp Normal file
View File

@ -0,0 +1,21 @@
{ %fail }
{ Source provided for Free Pascal Bug Report 3480 }
{ Submitted by "Danny Milosavljevic" on 2004-12-26 }
{ e-mail: danny_milo@yahoo.com }
program z;
type
IBla = interface
class function X: Boolean;
end;
TBla = class(TInterfacedObject, IBla, IInterface)
public
class function X: Boolean;
end;
begin
TBla.X;
end.