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;