aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1231/top2.vhdl
blob: 9779c31d9dfbce38bf2c471948b22e918c6f1db3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
entity top2 is
  generic (
    ok : boolean := false
    );
    port (
        clk : in bit;
        inp : in bit;
        outp : out bit);
end;

architecture beh of top2 is
begin
  assert ok report "my assert message";
  outp <= inp;
end beh;