summaryrefslogtreecommitdiff
path: root/tests/tbs/tb0676.pp
blob: 9abb2a5d0aaf16950fd2cb9559fc1219d99abedb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ %NORUN }

program tb0676;

{$warn 4110 error}

begin
  SwapEndian(UInt16($1234));
  SwapEndian(Int16($8765));
  SwapEndian(UInt32($12345678));
  SwapEndian(Int32($87654321));
  SwapEndian(UInt64($1234567887654321));
  SwapEndian(Int64($8765432112345678));
end.