mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 22:27:57 +02:00
14 lines
161 B
ObjectPascal
14 lines
161 B
ObjectPascal
{ %fail }
|
|
|
|
program PCErrorB;
|
|
{$bitpacking on}
|
|
{$r+}
|
|
|
|
var
|
|
chs :packed array [1..10] of char;
|
|
ch1 :array[1..10] of char;
|
|
|
|
begin
|
|
unpack(chs,ch1,2); { WRONG }
|
|
end.
|