mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 13:59:55 +02:00
no message
This commit is contained in:
parent
4337ecfd55
commit
9022d896f3
21
tests/tbs/tb0409.pp
Normal file
21
tests/tbs/tb0409.pp
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ %version=1.1 }
|
||||||
|
type
|
||||||
|
myl = type longint;
|
||||||
|
|
||||||
|
var
|
||||||
|
i1,i2,i3 : myl;
|
||||||
|
l : longint;
|
||||||
|
|
||||||
|
procedure p(i : myl);overload;
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure p(i : longint);overload;
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
|
begin
|
||||||
|
i1:=i2+i3;
|
||||||
|
l:=i1+l;
|
||||||
|
inc(i3);
|
||||||
|
end.
|
Loading…
Reference in New Issue
Block a user