mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:38:29 +02:00
16 lines
130 B
ObjectPascal
16 lines
130 B
ObjectPascal
unit uw10477;
|
|
|
|
interface
|
|
|
|
var
|
|
MyVar: longint;
|
|
|
|
implementation
|
|
|
|
{$if sizeof(MyVar)<>4}
|
|
{$Message FAIL 'Error'}
|
|
{$ifend}
|
|
|
|
end.
|
|
|