2 use ieee.std_logic_1164.all;
5 port (clk : in std_logic);
8 architecture psl of repro1 is
9 signal b : boolean := true;
11 -- All is sensitive to rising edge of clk
12 default clock is rising_edge(clk);
14 -- This assertion generates an ghdl-yosys-plugin error
15 -- ERROR: Assert `n.id != 0' failed in src/ghdl.cc:204.
16 INITIAL_1_a : assert always b;