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

package body pkg is
end pkg;

package mygpkg is new work.pkg generic map ( gen => 17 );