mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:28:55 +02:00
21 lines
205 B
ObjectPascal
21 lines
205 B
ObjectPascal
unit uw23071;
|
|
|
|
{$MODE DELPHI}
|
|
|
|
interface
|
|
|
|
type
|
|
TWrapper<T> = record
|
|
class procedure Z; static;
|
|
end;
|
|
|
|
implementation
|
|
|
|
class procedure TWrapper<T>.Z;
|
|
type
|
|
TLocalInteger = Integer;
|
|
begin
|
|
end;
|
|
|
|
end.
|