mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:48:00 +02:00
22 lines
232 B
ObjectPascal
22 lines
232 B
ObjectPascal
unit tw2920;
|
|
|
|
interface
|
|
{$mode Delphi}
|
|
|
|
Uses uw2920;
|
|
|
|
type myclass2= class(myclass)
|
|
function bb:string; override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
function myclass2.bb:string;
|
|
|
|
begin
|
|
bb:='b';
|
|
end;
|
|
|
|
begin
|
|
end.
|