aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue954/ent1.vhdl
blob: d616b7653e6351cd6072bf405aa2929989d8126d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
entity ent is
    port (
        i : in bit;
        o : out bit
    );
end ent;

architecture a of ent is
begin
  o <= i;
end;