aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/attributes/type/simple-integer-test-high.vhdl
blob: 86f478a9919871bdcefa2d226626cb42d38fefdb (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'high = 3 report "TEST FAILED T high" severity FAILURE;
  report "TEST PASSED T high" severity NOTE;
  wait;
end process p;
end only;