fpc/tests/tbs/tbs0594.pp
2013-03-17 16:42:34 +00:00

10 lines
101 B
ObjectPascal

{ %opt=-Sd }
var
s : set of 0..7;
begin
if sizeof(s)<>1 then
halt(1);
writeln('ok');
end.