fpc/tests/webtbs/uw23071.pp

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.