fpc/tests/tbs/tb0615.pp
florian c3a293b727 * test name properly
git-svn-id: trunk@32839 -
2016-01-03 22:05:00 +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.