diff options
Diffstat (limited to 'testsuite/gna/issue1379/bar3.vhdl')
-rw-r--r-- | testsuite/gna/issue1379/bar3.vhdl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/testsuite/gna/issue1379/bar3.vhdl b/testsuite/gna/issue1379/bar3.vhdl new file mode 100644 index 000000000..20665a853 --- /dev/null +++ b/testsuite/gna/issue1379/bar3.vhdl @@ -0,0 +1,24 @@ +entity foo3 is + generic ( + LENGTH : natural + ); + port ( + input : in bit_vector(LENGTH - 1 downto 0) + ); +end foo3; + +architecture behave of foo3 is +begin +end behave; + +entity bar3 is +end entity bar3; + +architecture behave of bar3 is +begin + + my_foo : entity work.foo3 + port map ( + input => (others => '0') + ); +end behave; |