aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/ticket43/bug.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2015-05-10 16:03:54 +0200
committerTristan Gingold <tgingold@free.fr>2015-05-10 16:03:54 +0200
commit7a998f26f619adec0527ebd7e09b63eb058fdf95 (patch)
treea11ace111425b58dc04f52c6aff64ed494f82613 /testsuite/gna/ticket43/bug.vhdl
parent7b7f3c1113a767b59e13cc49fe818c9c1efde15e (diff)
downloadghdl-7a998f26f619adec0527ebd7e09b63eb058fdf95.tar.gz
ghdl-7a998f26f619adec0527ebd7e09b63eb058fdf95.tar.bz2
ghdl-7a998f26f619adec0527ebd7e09b63eb058fdf95.zip
File reproducer for ticket 43 and 44.
Diffstat (limited to 'testsuite/gna/ticket43/bug.vhdl')
-rw-r--r--testsuite/gna/ticket43/bug.vhdl13
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 000000000..970835c3e
--- /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;