mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 07:47:58 +02:00
27 lines
259 B
ObjectPascal
27 lines
259 B
ObjectPascal
unit uw31431;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
type
|
|
TFoo = class
|
|
private
|
|
type
|
|
TID = Integer;
|
|
protected
|
|
type
|
|
TID2 = Integer;
|
|
end;
|
|
|
|
generic TBar<T> = class
|
|
private
|
|
FID: TFoo.TID;
|
|
FID2: TFoo.TID2;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|