fpc/tests/webtbs/tw16861.pp
Jonas Maebe c6d00a2b1f * correct the register size holding a smallset < 4 bytes when using "bt"
on it (mantis #16861)
  * fixed some indentation

git-svn-id: trunk@15531 -
2010-07-07 18:45:57 +00:00

15 lines
181 B
ObjectPascal

(*$packset 1 *)
program test;
var
s8: set of 0..7;
b: byte;
begin
b:=17;
s8:=[];
if b in (s8+[1]) then
halt(1);
b:=5;
if not(b in (s8+[5])) then
halt(2);
end.