mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 13:48:11 +02:00
10 lines
101 B
ObjectPascal
10 lines
101 B
ObjectPascal
{ %opt=-Sd }
|
|
var
|
|
s : set of 0..7;
|
|
begin
|
|
if sizeof(s)<>1 then
|
|
halt(1);
|
|
writeln('ok');
|
|
end.
|
|
|