aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug056/tb3.vhdl
blob: 34b758aa2253e92a3dee1595eda3a040bda15fa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package pkg3 is
  generic (c : natural);

  constant d : natural := c;
end;

entity tb3 is
end tb3;

architecture behav of tb3 is
  package p is new work.pkg3 generic map (c => 3);
begin
  assert p.d = 3;
end behav;