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

architecture a of e1 is
  type line is access string;
begin
    process
        variable q : line(1 to 10) := new string(1 to 10);
    begin
        wait;
    end process;
end;