fpc/tests/test/tparray9.pp
Jonas Maebe 3f917e0ca9 + some more working packed array tests
git-svn-id: trunk@4444 -
2006-08-19 11:15:26 +00:00

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.