verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / issue954 / ent1.vhdl
blobd616b7653e6351cd6072bf405aa2929989d8126d
1 entity ent is
2     port (
3         i : in bit;
4         o : out bit
5     );
6 end ent;
8 architecture a of ent is
9 begin
10   o <= i;
11 end;