Mantis #22468 was fixed by partial specializations addition in revision 27861

+ added test

git-svn-id: trunk@27901 -
This commit is contained in:
svenbarth 2014-06-08 15:47:13 +00:00
parent 60ef0a61bc
commit 45e2e91536
2 changed files with 32 additions and 0 deletions

1
.gitattributes vendored
View File

@ -13771,6 +13771,7 @@ tests/webtbs/tw2242.pp svneol=native#text/plain
tests/webtbs/tw22427.pp svneol=native#text/pascal
tests/webtbs/tw22428.pp svneol=native#text/pascal
tests/webtbs/tw22433.pp svneol=native#text/pascal
tests/webtbs/tw22468.pp svneol=native#text/pascal
tests/webtbs/tw22490.pp svneol=native#text/plain
tests/webtbs/tw2250.pp svneol=native#text/plain
tests/webtbs/tw22502.pp svneol=native#text/plain

31
tests/webtbs/tw22468.pp Normal file
View File

@ -0,0 +1,31 @@
{ %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.