aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue2116/pkg8.vhdl
blob: ed1c3c49a739719cfe76f0db8ef589ed0c031cae (plain)
1
2
3
4
package gen0 is
generic(v:natural:=0);function get return natural;end;package body gen0 is
function get return natural is begin return 0;end;end gen0;package gen2 is generic(package pkg is new work.gen0 generic map(<>));function get2 return natural;end gen2;package body gen2 is use pkg.all;function get2 return natural is begin return get;end;end;package g is new k'd;architecture behav of b is
begin end behav;