mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-08 04:40:56 +01:00
* do not convert succ/pred into add/sub nodes if nf_internal is set git-svn-id: trunk@34896 -
14 lines
145 B
ObjectPascal
14 lines
145 B
ObjectPascal
{$OVERFLOWCHECKS+}
|
|
{$mode objfpc}
|
|
program project1;
|
|
|
|
var
|
|
c: Cardinal;
|
|
i: Integer;
|
|
|
|
begin
|
|
i := 1;
|
|
for c := 0 to i do
|
|
WriteLn(i);
|
|
end.
|