aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1461/mwe.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-09-12 07:40:35 +0200
committerTristan Gingold <tgingold@free.fr>2020-09-12 07:40:35 +0200
commitcd6476fd3bccad677afa347e67241d0a994209d1 (patch)
tree39c3feae0e53f6302d6eaef6d8b6034f2aeb416a /testsuite/gna/issue1461/mwe.vhdl
parent69b0dbb24c1ae374bd2f9c4291e93326471bd71b (diff)
downloadghdl-cd6476fd3bccad677afa347e67241d0a994209d1.tar.gz
ghdl-cd6476fd3bccad677afa347e67241d0a994209d1.tar.bz2
ghdl-cd6476fd3bccad677afa347e67241d0a994209d1.zip
testsuite/gna: add a testcase for #1461
Also adjust case #1015
Diffstat (limited to 'testsuite/gna/issue1461/mwe.vhdl')
-rw-r--r--testsuite/gna/issue1461/mwe.vhdl12
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/gna/issue1461/mwe.vhdl b/testsuite/gna/issue1461/mwe.vhdl
new file mode 100644
index 000000000..fd6a38c02
--- /dev/null
+++ b/testsuite/gna/issue1461/mwe.vhdl
@@ -0,0 +1,12 @@
+library mwe;
+
+entity mwe is
+end entity;
+
+architecture a of mwe is
+begin
+ process
+ begin
+ wait;
+ end process;
+end;