mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-16 04:50:51 +01:00
no message
This commit is contained in:
parent
b14489dd90
commit
25ea80ba19
20
tests/tbs/tb0487.pp
Normal file
20
tests/tbs/tb0487.pp
Normal 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.
|
||||
Loading…
Reference in New Issue
Block a user