blob: 0a10182b57a7f86cd27318a902bb3f4077c8e25d [file] [log] [blame]
module always_ff_non_blocking;
always_ff @(posedge c) begin
a = b; // [Style: sequential-logic] [always-ff-non-blocking]
end
endmodule