mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 14:48:51 +02:00
15 lines
162 B
ObjectPascal
15 lines
162 B
ObjectPascal
type
|
|
tset1 = set of 0..7;
|
|
tset2 = set of 0..15;
|
|
|
|
procedure p(s : tset1);overload;
|
|
begin
|
|
end;
|
|
|
|
|
|
procedure p(s : tset2);overload;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end. |