mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
24 lines
411 B
ObjectPascal
24 lines
411 B
ObjectPascal
{$MODE DELPHI}
|
|
|
|
type
|
|
TSmallWrapper<TValue> = record
|
|
Value: TValue;
|
|
end;
|
|
|
|
TWrapper<T> = class
|
|
strict private
|
|
class var FSmallWrapper: TSmallWrapper<PInteger>;
|
|
public
|
|
class procedure Z; static;
|
|
end;
|
|
|
|
class procedure TWrapper<T>.Z;
|
|
begin
|
|
FSmallWrapper.Value := New(PInteger);
|
|
Dispose(FSmallWrapper.Value); { Error: pointer type expected, but ... }
|
|
end;
|
|
|
|
begin
|
|
TWrapper<Byte>.Z;
|
|
end.
|