diff options
Diffstat (limited to 'testsuite/gna/issue1055/repro1.vhdl')
-rw-r--r-- | testsuite/gna/issue1055/repro1.vhdl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/gna/issue1055/repro1.vhdl b/testsuite/gna/issue1055/repro1.vhdl new file mode 100644 index 000000000..47f059508 --- /dev/null +++ b/testsuite/gna/issue1055/repro1.vhdl @@ -0,0 +1,11 @@ +entity repro1 is +end; + +architecture behav of repro1 is + constant nbv : bit_vector(1 downto 0) := "01"; + + type arg_t is array (natural range <>) of bit_vector; + constant null_arg_t: arg_t(0 downto 1) := (others=>nbv); +begin +end; + |