mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
12 lines
142 B
ObjectPascal
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.
|