fpc/tests/webtbs/tw13619.pp
Jonas Maebe 445c842db3 * made ifthen() declaration in strutils Delphi-compatible (removed overloads
that cause various problems, added "overload" directive so it gets
    overloaded next to the routines in the "math" unit) (based on patch
    by Alexander S. Klenin, mantis #13619)
  - removed "inline" from that function because all the reference increasing/
    decreasing in its body mainly cause code bloat and little if any speed
    increase

git-svn-id: trunk@13084 -
2009-05-02 15:50:41 +00:00

11 lines
202 B
ObjectPascal

uses
Math, StrUtils;
begin
if (IfThen(1 > 2, 1, 2) <> 2) then
halt(1);
if (IfThen(1 > 2, '1', '2') <> '2') then
halt(2);
if (IfThen(1 > 2, '123', '456') <> '456') then
halt(3);
end.