diff options
Diffstat (limited to 'testsuite/gna/issue737/ent.vhdl')
-rw-r--r-- | testsuite/gna/issue737/ent.vhdl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/gna/issue737/ent.vhdl b/testsuite/gna/issue737/ent.vhdl new file mode 100644 index 000000000..988acb082 --- /dev/null +++ b/testsuite/gna/issue737/ent.vhdl @@ -0,0 +1,11 @@ +entity ent is +end entity; + +architecture impl of ent is + type bitvv is array(natural range <>) of bit_vector; + signal foo: bitvv(2 downto 0)(0 downto 0); +begin + +foo <= foo(1 downto 0) & foo(2); + +end architecture; |