aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue99/bug1.vhdl
blob: b8a2aba5ef027319084cb050774553ed50855c1e (plain)
1
2
3
4
5
6
7
8
9
10
package bug1 is
  generic ( gen: natural );
  constant test: natural:=gen;
end package;

package mygbug1 is new work.bug1 generic map ( gen => 17 );

package body bug1 is
end ;