diff options
Diffstat (limited to 'testsuite/gna/issue140/repro.vhdl')
-rw-r--r-- | testsuite/gna/issue140/repro.vhdl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/gna/issue140/repro.vhdl b/testsuite/gna/issue140/repro.vhdl new file mode 100644 index 000000000..794124572 --- /dev/null +++ b/testsuite/gna/issue140/repro.vhdl @@ -0,0 +1,12 @@ +entity tb is +end tb; + +architecture behav of tb is +begin + p : process + variable v : natural; + begin + v := 5; + v: null; + end process; +end behav; |