aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0100/varcomp.vhdl
blob: e388acdaf068dc08f438bc286ea55d2d38d23f00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
entity varcomp is
end;

architecture behav of varcomp is
  component abuf is
  end component;
begin
  process
  begin
    (v, y) := abuf;

    x := ;
  end process;
end behav;