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