* properly reject function calls as target of absolute, resolves #40977

* better error message on invalid expressions for absolute
This commit is contained in:
florian 2024-10-29 22:22:32 +01:00
parent 31448dcf03
commit b28681e91d
3 changed files with 25 additions and 2 deletions

View File

@ -1852,7 +1852,7 @@ implementation
mayberesettypeconvs;
exit;
end
else
else if hp.nodetype=blockn then
begin
hp2:=tblocknode(hp).statements;
if assigned(hp2) then
@ -1870,6 +1870,13 @@ implementation
mayberesettypeconvs;
exit;
end;
end
else
begin
if report_errors then
CGMessagePos(hp.fileinfo,type_e_variable_id_expected);
mayberesettypeconvs;
exit;
end;
end;
inlinen :

View File

@ -789,7 +789,7 @@ parser_e_directive_only_one_var=03095_E_$1 can be associated with only one varia
% Var Z : Longint;
% X,Y : Longint absolute Z;
% \end{verbatim}
parser_e_absolute_only_to_var_or_const=03096_E_absolute can only be associated with a var or const
parser_e_absolute_only_to_var_or_const=03096_E_absolute can only be associated with a variable or constant representing an address
% The address of an \var{absolute} directive can only point to a variable or
% constant. Therefore, the following code will produce this error:
% \begin{verbatim}

16
tests/webtbf/tw40977.pp Normal file
View File

@ -0,0 +1,16 @@
{ %fail }
program Project1;
procedure foo2;
begin
end;
procedure foo(bar: integer);
var x: integer absolute foo(1);
begin
foo2;
end;
begin
foo(1);
end.