diff options
Diffstat (limited to 'testsuite/gna/issue1772/repro3.vhdl')
-rw-r--r-- | testsuite/gna/issue1772/repro3.vhdl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/gna/issue1772/repro3.vhdl b/testsuite/gna/issue1772/repro3.vhdl new file mode 100644 index 000000000..8355aab51 --- /dev/null +++ b/testsuite/gna/issue1772/repro3.vhdl @@ -0,0 +1,16 @@ +entity repro3 is +end; + +architecture behav of repro3 is + type arr_el_t is array(0 to 1) of string (1 to 4); +begin + process + begin + for k in arr_el_t'range loop + report natural'image (k); + null; + end loop; + wait; + end process; +end behav; + |