mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 02:59:21 +02:00
15 lines
160 B
ObjectPascal
15 lines
160 B
ObjectPascal
{ %FAIL }
|
|
program tgenconst30;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
TRange = 3..4;
|
|
|
|
generic TTest<const U: TRange> = record end;
|
|
|
|
var
|
|
t: specialize TTest<2>;
|
|
begin
|
|
end.
|