diff options
Diffstat (limited to 'testsuite/gna/issue546/test-bug.vhdl')
-rw-r--r-- | testsuite/gna/issue546/test-bug.vhdl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/gna/issue546/test-bug.vhdl b/testsuite/gna/issue546/test-bug.vhdl new file mode 100644 index 000000000..cc2ebc666 --- /dev/null +++ b/testsuite/gna/issue546/test-bug.vhdl @@ -0,0 +1,8 @@ +entity test_arr is +end entity; + +architecture behavior of test_arr is + type T is array(natural range <>) of bit_vector; + signal a: T(0 to 1)(0 to 1) := ("00", "11"); +begin +end architecture; |