fpc/tests/webtbs/tw30208.pp
florian 49f63d67b2 * correctly check left.location instead of left.expectloc when generating
code for not nodes, resolves #30208

git-svn-id: trunk@33906 -
2016-06-04 15:54:17 +00:00

12 lines
166 B
ObjectPascal

var R: bitpacked record
A, B: boolean;
end;
begin
R.A := true;
R.B := false;
if not R.B then
writeln('ok')
else
halt(1);
end.