verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / issue1177 / issue1.vhdl
blob5d18a0f57673efbabfd756c78b153bd1776ffd4e
1 library ieee;
2 use ieee.std_logic_1164.all;
4 entity issue1 is
5     port (foo : in  std_logic;
6           bar : out boolean);
7 end issue1;
9 architecture behav of issue1 is
10 begin
12     bar <= (?? foo);
14 end architecture;