fpc/tests/webtbs/uw13345b.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

19 lines
290 B
ObjectPascal

unit uw13345b;
{$mode DELPHI}
interface
uses uw13345c;
implementation
type
TTestIntf=class(TInterfacedObject,ITestIF)
procedure Test;
end;
procedure TTestIntf.Test;
begin
writeln('OK');
end;
initialization
GTEST:=TTestIntf.Create;
writeln('ASSIGNED IF');
end.