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