blob: 25fc6e76494237a26ad42b7d0de8aa4e38b18f27 [file] [log] [blame]
module test (input e, a, output reg b);
always_comb
if (e)
b = a;
endmodule