aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0100/paren.vhdl
blob: ca1c9b7fd2c4fa546f99b25b127e2419e5f89a3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;