summaryrefslogtreecommitdiff
path: root/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/attributes/array/simple-left-attribute.vhdl
blob: 9c7f3b0eab4e0044c929ffe2d78fd25957821db3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
entity test is
end test;

architecture only of test is
  type my_type is array(0 to 3) of integer;
begin  -- only
  p: process
  begin  -- process p
    assert my_type'left = 0 report "TEST FAILED left = 0" severity failure;
    report "TEST PASSED left = 0";
    wait;
  end process p;
end only;