blob: 433cc50492dfba253af709925c49f0edf9f9ebab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
unit tgenconst22;
{$mode delphi}
interface
implementation
procedure Test<A; const N: LongInt>; forward;
procedure Test<A; const N: LongInt>;
begin
end;
end.
|