aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0130/word_entity1.vhdl
blob: f22d8d39bb06fd0b14c25471e4715ba05fcfee7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
entity word_entity is
   generic (
       package word40 is new work.word_generic_pkg
           generic map (
               WIDTH => 40  -- not a generic in word_generic_pkg
           )
   );
end entity;

architecture foo of word_entity is
begin
end architecture;