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

architecture behav of qual is
begin
  process
    variable cnt : natural range 0 to 15;
  begin
    cnt := cnt'last'(others => '1');
  end process;
end behav;