mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 10:48:30 +02:00
20 lines
176 B
ObjectPascal
20 lines
176 B
ObjectPascal
{$mode objfpc}
|
|
{$interfaces corba}
|
|
|
|
unit uw36652;
|
|
interface
|
|
|
|
type
|
|
TClassA = class
|
|
procedure DoThis;
|
|
end;
|
|
|
|
implementation
|
|
|
|
procedure TClassA.DoThis;
|
|
begin
|
|
|
|
end;
|
|
|
|
end.
|