aboutsummaryrefslogtreecommitdiffstats
path: root/tests/opt/opt_expr_constconn.v
blob: d18b120e311166531969514d9ce7ebebf9571e11 (plain)
1
2
3
4
5
6
7
8
module top(...);

input [7:0] A;
output [7:0] B;
wire [7:0] C = 3;
assign B = A + C;

endmodule