fpc/tests/webtbs/tw15693.pp
Jonas Maebe 870edaf916 * tobject.unitname and tobject.tostring have to return an ansistring instead
of a shortstring (mantis #15693)
  * changed tobject5 so it checks whether the return values are correct

git-svn-id: trunk@14869 -
2010-02-06 17:53:49 +00:00

18 lines
187 B
ObjectPascal

{ %norun }
{$mode objfpc}
{$h+}
type
TMyClass = class
function ToString: String; override;
end;
function TMyClass.ToString: String;
begin
Result:=inherited;
end;
begin
end.