fpc/tests/webtbs/tw25255b.pp
florian 15bdce0a6a * new test
git-svn-id: trunk@38262 -
2018-02-16 21:21:25 +00:00

22 lines
293 B
ObjectPascal

var
qb : qwordbool;
lb : longbool;
wb : wordbool;
procedure p;
begin
if not(qb) then
halt(1);
if not(lb) then
halt(1);
if not(wb) then
halt(1);
end;
begin
qb:=qwordbool($8000000000000000);
lb:=longbool($80000000);
wb:=wordbool($8000);
p;
writeln('ok');
end.