aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue729/ent.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue729/ent.vhdl')
-rw-r--r--testsuite/gna/issue729/ent.vhdl16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/gna/issue729/ent.vhdl b/testsuite/gna/issue729/ent.vhdl
new file mode 100644
index 000000000..3c0eb4db9
--- /dev/null
+++ b/testsuite/gna/issue729/ent.vhdl
@@ -0,0 +1,16 @@
+entity e is
+end entity;
+
+architecture a of e is
+ signal a : boolean;
+begin
+ process(a)
+ begin
+ case a is
+ when false => report "FALSE";
+ when true => report "TRUE";
+ when others => report "others";
+ end case;
+ end process;
+end architecture;
+