blob: 15749c3ebc3debcfbfdda0a9f1fb369dd9c188c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{ %NORUN }
{ this tests that nested non-generic structured types can be used inside
generics - here: record in record }
program tgeneric63;
{$ifdef fpc}
{$mode delphi}
{$endif}
type
TTest<T> = record
type
TTestSub = record
class function Test(a: T): T; static;
end;
end;
class function TTest<T>.TTestSub.Test(a: T): T;
begin
Result := a;
end;
var
t: TTest<Integer>.TTestSub;
begin
TTest<Integer>.TTestSub.Test(42);
end.
|