fpc/tests/webtbs/tw7379.pp
Jonas Maebe e2872c9aea * fixed more missing subsetreg/subsetref support
git-svn-id: trunk@4595 -
2006-09-09 22:10:32 +00:00

10 lines
142 B
ObjectPascal

{$mode macpas}
program test;
var x: packed array [1..8] of boolean;
begin x[1]:= false; x[1]:= not x[1];
if (not x[1]) then
halt(1);
end.