mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-27 16:50:33 +02:00
22 lines
190 B
ObjectPascal
22 lines
190 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tgenconst33;
|
|
|
|
{$mode delphi}
|
|
|
|
{var
|
|
Test: LongInt = 42;}
|
|
|
|
type
|
|
Test<const N: LongInt> = class
|
|
|
|
end;
|
|
|
|
const
|
|
N = 42;
|
|
|
|
begin
|
|
if Test<N then
|
|
Writeln('Foo');
|
|
end.
|