aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0100/paren.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/bug0100/paren.vhdl')
-rw-r--r--testsuite/gna/bug0100/paren.vhdl13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/gna/bug0100/paren.vhdl b/testsuite/gna/bug0100/paren.vhdl
new file mode 100644
index 000000000..ca1c9b7fd
--- /dev/null
+++ b/testsuite/gna/bug0100/paren.vhdl
@@ -0,0 +1,13 @@
+entity paren is
+end paren;
+
+architecture behav of paren is
+ constant cst : natural := 5;
+begin
+ process
+ begin
+ if (cst = 3 then
+ null;
+ end if;
+ end process;
+end behav;