verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / issue1591 / repro1.vhdl
blobdf894a1e604725577955bd7d8a026cf6f9d77d51
1 library ieee;
2   use ieee.std_logic_1164.all;
4 entity repro1 is
5   port (clk : in std_logic);
6 end entity repro1;
8 architecture psl of repro1 is
9   signal b : boolean := true;
10 begin
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;
17 end architecture psl;