mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 23:47:52 +02:00
Mantis #22468 was fixed by partial specializations addition in revision 27861
+ added test git-svn-id: trunk@27901 -
This commit is contained in:
parent
60ef0a61bc
commit
45e2e91536
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
31
tests/webtbs/tw22468.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user