aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0100/noconst.vhdl
blob: 78284d16ec091242497bb45cf97577dc132af5c1 (plain)
1
2
3
4
5
6
7
8
entity noconst is
end noconst;

architecture arch of noconst is
  type map_type is array(bit) of character;
  constant smap : map_type := "";
begin
end;