mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 06:08:16 +02:00
* some special array constructor cases
This commit is contained in:
parent
f8a22cb77e
commit
420fb26f38
15
tests/tbs/tb0436.pp
Normal file
15
tests/tbs/tb0436.pp
Normal file
@ -0,0 +1,15 @@
|
||||
{$mode objfpc}
|
||||
|
||||
procedure pext(a:array of extended);
|
||||
begin
|
||||
end;
|
||||
|
||||
procedure p(a:array of const);
|
||||
begin
|
||||
end;
|
||||
|
||||
begin
|
||||
p([0.0]);
|
||||
p([pi]);
|
||||
pext([0.0]);
|
||||
end.
|
Loading…
Reference in New Issue
Block a user