aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1971/repro_bit_oper.vhdl
blob: d5daa14cc322a63488e1684b7ff0f9306b441ea8 (plain)
1
2
3
4
5
6
7
8
entity repro_bit_oper is
  port (x : in bit; y : out boolean);
end;

architecture a of repro_bit_oper is
begin
  y <= true when x else false;
end;