mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 22:47:59 +02:00
15 lines
161 B
ObjectPascal
15 lines
161 B
ObjectPascal
{ %NORUN }
|
|
program tgenconst29;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
TRange = 3..4;
|
|
|
|
generic TTest<const U: TRange> = record end;
|
|
|
|
var
|
|
t: specialize TTest<3>;
|
|
begin
|
|
end.
|