pascalabcnet/TestSuite/const3.pas
Бондарев Иван 5f28848d1f bug fix #474
2017-08-26 15:01:25 +02:00

14 lines
134 B
ObjectPascal

const
h = Round(1.3);
h2 = h;
procedure Test;
const dh = h;
begin
assert(dh = 1);
end;
begin
Test;
assert(h2 = h);
end.