aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/libghdl/examples/comments/var_fail.vhdl
blob: 71689ff5971697c38fc4f7bd1bad9eba54641c3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
architecture arch of ent is
begin
  process
    --  Comment
    variable v : natural;
  begin
    while v < 10 loop
      v := v + 1;
    end loop;
    wait;
  end process;
end arch;