aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1386/example.vhdl
blob: a95942e64fc3abbe00b7b43f27491e50fb60672a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
library ieee;
use ieee.std_logic_1164.all;

entity example is
  generic (
    PARAMETER : std_logic_vector);
end example;

architecture behavioral of example is
begin
  assert PARAMETER = x"9" severity failure;
end behavioral;