mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-30 13:42:32 +02:00
23 lines
270 B
ObjectPascal
23 lines
270 B
ObjectPascal
unit bug0139a;
|
|
|
|
interface
|
|
|
|
uses
|
|
objpas;
|
|
|
|
type
|
|
SomeClass=class(TObject)
|
|
protected
|
|
procedure doSomething; virtual;
|
|
end ;
|
|
|
|
implementation
|
|
|
|
|
|
procedure SomeClass.doSomething;
|
|
begin
|
|
Writeln ('Hello from SomeClass.DoSomething');
|
|
end ;
|
|
|
|
end.
|