diff options
Diffstat (limited to 'testsuite/gna/issue1759/repro.vhdl')
-rw-r--r-- | testsuite/gna/issue1759/repro.vhdl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testsuite/gna/issue1759/repro.vhdl b/testsuite/gna/issue1759/repro.vhdl new file mode 100644 index 000000000..a4a932531 --- /dev/null +++ b/testsuite/gna/issue1759/repro.vhdl @@ -0,0 +1,18 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity repro is +end; + +architecture behav of repro is + signal s : std_logic := '0'; +begin + process + begin + for v in std_logic loop + s <= v; + wait for 1 ns; + end loop; + wait; + end process; +end behav; |