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

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.