mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00

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 -
12 lines
175 B
ObjectPascal
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.
|