mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 01:08:07 +02:00
16 lines
218 B
ObjectPascal
16 lines
218 B
ObjectPascal
{$mode objfpc}
|
|
|
|
uses
|
|
sysutils;
|
|
|
|
var
|
|
s : tintegerset;
|
|
|
|
begin
|
|
if sizeof(s)<>sizeof(integer) then
|
|
begin
|
|
writeln('Wrong size of Sysutils.TIntegerSet (',sizeof(s),')');
|
|
halt(1);
|
|
end;
|
|
end.
|