blob: be4016e18d5cb6d3d27cd3c0c23c690595ab8ef1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ %norun }
{$mode objfpc}
{$h+}
type
TMyClass = class
function ToString: String; override;
end;
function TMyClass.ToString: String;
begin
Result:=inherited;
end;
begin
end.
|