blob: f52256d44e37caf9fcdcb8da120b0e83d7b1fdfd [file] [log] [blame]
module top(input clk, a, b);
always @(posedge clk)
if (a) begin :scope
reg b_inv = ~b;
end
endmodule