mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:47:54 +02:00

directive, state that "overload" is missing rather than that overloading is disabled (mantis #10081) git-svn-id: trunk@12723 -
18 lines
250 B
ObjectPascal
18 lines
250 B
ObjectPascal
{ %fail }
|
|
{$mode delphi}
|
|
|
|
{ manual verification: make sure it complains about a missing overload
|
|
directive rather than saying that overloading is disabled
|
|
}
|
|
|
|
procedure test(a: longint);
|
|
begin
|
|
end;
|
|
|
|
procedure test(s: string);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|