blob: bab15bad3434b1a5127af54a2177a4d0c91e50e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
var x : byte;
y : longint;
procedure set_x;
begin
y:=345;
{$R-}
x:=y;
{$R+}
Writeln('x = ',x);
{$R-}
x:=y
{$R+}
end;
{ the bug comes from the fact that as there is no
semicolon after x:=y the parser must read up to end; statement
and thus change the range check mode before
the assign node is created !! }
begin
set_x;
Writeln('x = ',x);
end.
|