aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0100/nochoice1.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-06-13 18:18:13 +0200
committerTristan Gingold <tgingold@free.fr>2019-06-13 18:18:13 +0200
commit7493a7cb0f5abc15a0b2ae6237d020cbbc790a9d (patch)
tree0b5f1b7d2adb9c2e28aa392df7e47ba88ed77868 /testsuite/gna/bug0100/nochoice1.vhdl
parenta1a032768770c502292a7d0c632fba17aef8c012 (diff)
downloadghdl-7493a7cb0f5abc15a0b2ae6237d020cbbc790a9d.tar.gz
ghdl-7493a7cb0f5abc15a0b2ae6237d020cbbc790a9d.tar.bz2
ghdl-7493a7cb0f5abc15a0b2ae6237d020cbbc790a9d.zip
Add tests for previous commit.
Diffstat (limited to 'testsuite/gna/bug0100/nochoice1.vhdl')
-rw-r--r--testsuite/gna/bug0100/nochoice1.vhdl12
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/gna/bug0100/nochoice1.vhdl b/testsuite/gna/bug0100/nochoice1.vhdl
new file mode 100644
index 000000000..6dc62ee53
--- /dev/null
+++ b/testsuite/gna/bug0100/nochoice1.vhdl
@@ -0,0 +1,12 @@
+entity nochoice is
+end;
+
+architecture behav of nochoice is
+ constant n : natural := 5;
+begin
+ process
+ begin
+ case n is
+ end case;
+ end process;
+end behav;