mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 13:38:31 +02:00
* test that SysUtils.Swap<>() doesn't hide System.Swap()
This commit is contained in:
parent
64c27a86a8
commit
6ec8441744
@ -25,6 +25,7 @@ end;
|
||||
|
||||
var
|
||||
r1, r2, r3: TMyRec;
|
||||
w: Word;
|
||||
begin
|
||||
r1 := 42;
|
||||
r2 := 32;
|
||||
@ -36,5 +37,10 @@ begin
|
||||
Halt(2);
|
||||
if CopyCount <> 0 then
|
||||
Halt(3);
|
||||
{ ensure that SysUtils.Swap<> does not hide System.Swap }
|
||||
w := $4321;
|
||||
w := Swap(w);
|
||||
if w <> $2143 then
|
||||
Halt(4);
|
||||
WriteLn('Ok');
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user