* don't throw an internalerror in case of an illegal assignment to an open array, resolves #40662

This commit is contained in:
florian 2024-02-22 22:32:57 +01:00
parent 9c5bfbeb78
commit 3cf7890352
2 changed files with 16 additions and 1 deletions

View File

@ -722,7 +722,11 @@ implementation
{ assignments to formaldefs and open arrays aren't allowed }
if is_open_array(left.resultdef) then
CGMessage(type_e_assignment_not_allowed)
begin
CGMessage(type_e_assignment_not_allowed);
result:=cerrornode.create;
exit;
end
else if (left.resultdef.typ=formaldef) then
if not(target_info.system in systems_managed_vm) then
CGMessage(type_e_assignment_not_allowed)

11
tests/webtbf/tw40662.pp Normal file
View File

@ -0,0 +1,11 @@
{ %fail }
program test;
procedure proc(var values: array of string);
begin
values := ['hi']; // project1.lpr(5,10) Error: Assignments to formal parameters and open arrays are not possible
// project1.lpr(5,13) Error: Internal error 99080501
end;
begin
end.