fpc/tests/webtbs/tw9176.pp
Jonas Maebe b31a502e6e * tw9176a should fail, moved to webtbf and added { %fail }
+ added tw9176 which should succeed

git-svn-id: trunk@10924 -
2008-05-09 21:01:41 +00:00

25 lines
224 B
ObjectPascal

{$ifdef fpc}
{$mode delphi}
{$endif}
type TBla=class
procedure Bla;
procedure BlaBla;
end;
procedure TBla.Bla;
begin
end;
procedure TBla.BlaBla;
procedure Bla;
begin
end;
begin
Bla;
end;
begin
end.