diff options
Diffstat (limited to 'testsuite/gna/ticket43/bug.vhdl')
-rw-r--r-- | testsuite/gna/ticket43/bug.vhdl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/gna/ticket43/bug.vhdl b/testsuite/gna/ticket43/bug.vhdl new file mode 100644 index 0000000..970835c --- /dev/null +++ b/testsuite/gna/ticket43/bug.vhdl @@ -0,0 +1,13 @@ +entity bug is +end; + +use work.pkg.all; + +architecture behav of bug is +begin + p: process + variable rec : rec_t; + begin + wait; + end process; +end behav; |