aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue9/repro.vhdl
blob: f8b7c8eeae3796105c0afae4d487c8b3c9c9a159 (plain)
1
2
3
4
5
6
7
8
entity tmp is end entity;
architecture arch of tmp is
    signal b : bit;
begin
    with true select b <=
     '0' when false | true,
     '1' when true;
end architecture;