How do you plan to solve it?
module dff_posedge ( input CLK, input D, output reg Q ); always @(posedge CLK) Q <= D; endmodule