blob: 14ec21d2a745f7b021f66e1e6c1ab1edbbe1da70 (
plain)
1
2
3
4
5
6
7
8
9
10
|
entity repro is
end repro;
architecture behav of repro is
constant a : boolean := True;
constant b : boolean := False;
constant c : boolean := False;
begin
assert (a and b) = c severity failure;
end behav;
|