mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
22 lines
299 B
ObjectPascal
22 lines
299 B
ObjectPascal
{ %FAIL }
|
|
|
|
{$MODE DELPHI}
|
|
|
|
type
|
|
TWrapper<T> = record
|
|
procedure Z(a: TWrapper);
|
|
{ TWrapper is an unspecialized generic type identifier and should not be
|
|
accepted here }
|
|
end;
|
|
|
|
procedure TWrapper<T>.Z(a: TWrapper);
|
|
begin
|
|
end;
|
|
|
|
var
|
|
wr: TWrapper<Integer>;
|
|
|
|
begin
|
|
wr.Z(wr);
|
|
end.
|