mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 11:28:59 +02:00
20 lines
177 B
ObjectPascal
20 lines
177 B
ObjectPascal
program tgenconst32;
|
|
|
|
{$mode delphi}
|
|
|
|
var
|
|
Test: LongInt = 42;
|
|
|
|
type
|
|
Test<const N: LongInt> = class
|
|
|
|
end;
|
|
|
|
const
|
|
N = 42;
|
|
|
|
begin
|
|
if Test<N then
|
|
Writeln('Foo');
|
|
end.
|