aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/attributes/type/left/simple-integer-test.vhdl
blob: 34b52d6c6b9dc5d2d37814362c97ab121d9c24ea (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 small is range 1 to 3;
begin  -- only
p: process
begin  -- process p
  assert small'left = 1 report "TEST FAILED" severity FAILURE;
  report "TEST PASSED" severity NOTE;
  wait;
end process p;
end only;