fpc/tests/webtbf/tw24013a.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

12 lines
175 B
ObjectPascal

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