mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 16:09:26 +02:00
* overloading test for multiple implementations
This commit is contained in:
parent
abbc3fa755
commit
a283810536
18
tests/tbf/tb0157.pp
Normal file
18
tests/tbf/tb0157.pp
Normal file
@ -0,0 +1,18 @@
|
||||
{ %fail }
|
||||
unit tb0157;
|
||||
|
||||
interface
|
||||
|
||||
procedure p1(w:word);
|
||||
|
||||
implementation
|
||||
|
||||
procedure p1(w:word);
|
||||
begin
|
||||
end;
|
||||
|
||||
procedure p1(w:longint);
|
||||
begin
|
||||
end;
|
||||
|
||||
end.
|
Loading…
Reference in New Issue
Block a user