fpc/tests/webtbs/tw13345.pp
Jonas Maebe e2b8792bd3 * do not initialize global reference-counted variables in the automatic
initialization code of units/programs, because they are already
    zero and initializing them explicitly is Delphi-incompatible
    (mantis #13345)

git-svn-id: trunk@13042 -
2009-04-25 18:53:58 +00:00

14 lines
174 B
ObjectPascal

{ %opt=-gh }
program iftest;
{$mode DELPHI}
uses uw13345c;
//uses uw13345b, uw13345c;
begin
HaltOnNotReleased:=true;
Writeln('START');
GTEST.Test;
Writeln('END');
end.