mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 08:49:26 +02:00
+ check for internal error 8954 when passing arrays[1..1] as value
parameter
This commit is contained in:
parent
857149a109
commit
a5dd1abd5f
12
tests/ts/ts010032.pp
Normal file
12
tests/ts/ts010032.pp
Normal file
@ -0,0 +1,12 @@
|
||||
type ta = array[1..1,1..100] of integer;
|
||||
|
||||
procedure t(a: ta);
|
||||
begin
|
||||
end;
|
||||
|
||||
var a: ta;
|
||||
|
||||
begin
|
||||
t(a);
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user