mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 17:47:50 +02:00
21 lines
151 B
ObjectPascal
21 lines
151 B
ObjectPascal
unit uw3356;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
type
|
|
TA = class
|
|
private
|
|
procedure FA;
|
|
end;
|
|
|
|
implementation
|
|
|
|
procedure TA.FA;
|
|
begin
|
|
|
|
end;
|
|
|
|
end.
|