aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue2131/array_of_string_elements.vhdl
blob: 128a5f92f8b4c465edf3ca4996592eae8ed63374 (plain)
1
2
3
4
5
6
7
8
9
10
entity array_of_string_elements is
end entity;

architecture foo of array_of_string_elements is
    type strings is array (natural range <>) of string;
    constant strings_constants: strings(0 to 3) := 
                          ("one", "two", "three", "four");
    
begin
end architecture;