fpc/tests/webtbs/tw11568.pp
florian e0ff540918 + defined FPC_FULLVERSION as integer constant containing the version,
release and patch level are always two digits so the version can 
  be compared numerically: so 2.2.2 results in 20202, resolves #11568

git-svn-id: trunk@11504 -
2008-08-03 09:31:50 +00:00

10 lines
179 B
ObjectPascal

{$if not(fpc_fullversion>20202)}
{$error Problem with fpc_fullversion}
{$endif}
{ force compiler error if it's defined wrong }
{$if fpc_fullversion>20202)}
begin
end.
{$endif}