mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 11:48:04 +02:00
11 lines
107 B
ObjectPascal
11 lines
107 B
ObjectPascal
{ %NORUN }
|
|
|
|
{$MODE DELPHI}
|
|
|
|
type
|
|
TWrapper<T> = record end;
|
|
TWrapper = TWrapper<Byte>;
|
|
|
|
begin
|
|
end.
|