mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:38:14 +02:00
* properly reject function calls as target of absolute, resolves #40977
* better error message on invalid expressions for absolute
This commit is contained in:
parent
31448dcf03
commit
b28681e91d
@ -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 :
|
||||
|
@ -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
16
tests/webtbf/tw40977.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user