fpc/tests/webtbs/tw22468.pp
2014-06-08 15:47:13 +00:00

32 lines
358 B
ObjectPascal

{ %NORUN }
program tw22468;
{$MODE DELPHI}
type
TArray<T> = array of T;
TWrapper<TValue> = record
private
type TValueArray = TArray<TValue>;
public
class procedure Z; static;
end;
{$PUSH}{$MACRO ON}
{$DEFINE TWrapper__Z :=
var
a: TValueArray;
begin
end
}
class procedure TWrapper<TValue>.Z;
TWrapper__Z;
{$POP}
begin
end.