aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1387/repro2.vhdl
blob: 30e32f59632a2de011061297f2329b99d44e80bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package support_pkg2 is
  function ">" ( l,r : integer ) return bit;
end;

use work.support_pkg2.all;

entity repro2 is
end;

architecture behav of repro2 is
  signal sov : bit_vector(0 to 21);
begin
  cfg : if ">"(sov'length, 1) generate
  end generate;
end;