mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:38:29 +02:00
15 lines
170 B
ObjectPascal
15 lines
170 B
ObjectPascal
{ %fail }
|
|
|
|
{ from gpc test suite }
|
|
program PCErrorA;
|
|
|
|
{$r+}
|
|
var
|
|
chs :bitpacked array [1..10] of char;
|
|
ch1 :array[1..10] of char;
|
|
|
|
begin
|
|
pack(ch1,2,chs); { WRONG }
|
|
end.
|
|
|