fpc/tests/webtbs/tw13187.pp
Jonas Maebe e58d8d6b92 * set maximum alignment of shortstrings to 2 in MacPas mode
(mantis #13187)

git-svn-id: trunk@12745 -
2009-02-16 18:57:26 +00:00

17 lines
271 B
ObjectPascal

{$ifdef FPC}
{$mode macpas}
{$endif}
{$align power}
program StrSizeTest;
type
StrRec =
record
s1: string[ 10];
s2: string[ 10];
end;
begin
writeln( 'SizeOf( StrRec) = ', SizeOf( StrRec));
if (sizeof(strrec)<>24) then
halt(1);
end.