fpc/tests/webtbs/tw13345x.pp
Jonas Maebe 0698678f86 * renamed tw13345y.pp to uw13345y because it's a unit (otherwise its
object file is not available for linking when tw13345x is recompiled)

git-svn-id: trunk@12959 -
2009-03-22 20:52:45 +00:00

18 lines
238 B
ObjectPascal

{ %opt=-gh }
{ %recompile }
{$mode delphi}
uses
uw13345y;
type
tc = class(tinterfacedobject,ta)
end;
begin
HaltOnNotReleased:=true;
{ should be automatically freed by the finalization code of tw13345y }
c:=tc.create;
end.