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