aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0100/nochoice2.vhdl
blob: ec8db684da088fd15fa15e5c35d6c10a3933e0fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
entity nochoice2 is
end;

architecture behav of nochoice2 is
  constant n : string (1 to 2) := "ab";
begin
  process
  begin
    case n is
    end case;
  end process;
end behav;