fpc/tests/webtbf/tw24013.pp
Jonas Maebe 1244cdff70 * don't treat bitpacked arrays of subranges of char that can be represented
using less than 8 bits per element the same as regular char arrays as far
    as automatic type conversions are concerned (they have to be explicitly
    packed/unpacked) (mantis #24013)

git-svn-id: trunk@23739 -
2013-03-09 10:37:30 +00:00

10 lines
143 B
ObjectPascal

{ %fail }
var
astr: bitpacked array[1..5] of #0..#127;
begin
writeln('Assigning a literal string to astr:');
astr := 'aaaaa';
end.