mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 20:09:33 +02:00
15 lines
182 B
ObjectPascal
15 lines
182 B
ObjectPascal
{%FAIL}
|
|
{$mode objfpc}
|
|
{
|
|
test out of range error with constants
|
|
}
|
|
program tgenconst8;
|
|
|
|
type
|
|
generic TByte<const U: Byte> = record end;
|
|
|
|
var
|
|
a: specialize TByte<300>;
|
|
begin
|
|
end.
|