fpc/tests/tbf/tb0222.pp
Jonas Maebe 293f09e41d * corrected test (only "overload" differences between interface/
implementation should cause compilation to fail)

git-svn-id: trunk@19494 -
2011-10-15 15:46:34 +00:00

17 lines
127 B
ObjectPascal

{ %fail }
unit tb0222;
{$mode delphi}
interface
procedure test;
implementation
procedure test; overload;
begin
end;
end.