no message

This commit is contained in:
florian 2005-02-24 22:36:03 +00:00
parent b14489dd90
commit 25ea80ba19

20
tests/tbs/tb0487.pp Normal file
View File

@ -0,0 +1,20 @@
uses
variants;
var
v : variant;
i : longint;
begin
v:=true;
if not(v) then
halt(1);
while not(v) do
halt(1);
i:=1;
repeat
if i>1 then
halt(1);
inc(i);
until v;
writeln('ok');
end.