fpc/tests/tbs/tb0527.pp
Jonas Maebe c9148d67a9 * support for {$z+/-} (={$z4/1})
git-svn-id: trunk@6109 -
2007-01-21 22:08:53 +00:00

12 lines
142 B
ObjectPascal

type
{$z-}
te1 = (a,b,c);
{$z+}
te2 = (e,f,g);
begin
if sizeof(te1) <> 1 then
halt(1);
if sizeof(te2) <> 4 then
halt(2);
end.