mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 15:47:52 +02:00
+ missing halt instructions
This commit is contained in:
parent
68b092a466
commit
e7fda48327
@ -26,5 +26,8 @@ begin
|
||||
ok := false;
|
||||
end;
|
||||
end;
|
||||
if ok then writeln('ok');
|
||||
if ok then
|
||||
writeln('ok')
|
||||
else
|
||||
halt(1);
|
||||
end.
|
||||
|
@ -26,5 +26,8 @@ begin
|
||||
ok := false;
|
||||
end;
|
||||
end;
|
||||
if ok then writeln('ok');
|
||||
if ok then
|
||||
writeln('ok')
|
||||
else
|
||||
halt(1);
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user