mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00

of a shortstring (mantis #15693) * changed tobject5 so it checks whether the return values are correct git-svn-id: trunk@14869 -
18 lines
187 B
ObjectPascal
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.
|