mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-24 02:19:24 +02:00
+ 246
This commit is contained in:
parent
6380dcc54c
commit
1010cc4f7c
13
bugs/bug0246.pp
Normal file
13
bugs/bug0246.pp
Normal file
@ -0,0 +1,13 @@
|
||||
type
|
||||
tref=record
|
||||
ofs : longint;
|
||||
end;
|
||||
|
||||
procedure p(const ref:tref);
|
||||
begin
|
||||
with ref do
|
||||
ofs:=ofs+1; { This should issue an error, because ref is const ! }
|
||||
end;
|
||||
|
||||
begin
|
||||
end.
|
@ -333,3 +333,4 @@ bug0243.pp Arguments of functions are computed from right to left this
|
||||
is against pascal convention
|
||||
bug0244.pp nested procedures can't have same name as global ones
|
||||
bug0245.pp assigning pointers to address of consts is allowed (refused by BP !)
|
||||
bug0246.pp const para can be changed without error
|
Loading…
Reference in New Issue
Block a user