blob: c9578948ceaf16d2409896bdd62991e3f10fd483 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
entity nochoice2 is
end;
architecture behav of nochoice2 is
constant n : string (1 to 2) := "ab";
begin
process
begin
case n is
when "aa" => null;
when "bbb" => null;
end case;
end process;
end behav;
|