blob: e84a31543cb0c91311a76fe07912a6d23c546c24 [file] [log] [blame]
/*
:name: default_clocking_block
:description: default clocking block test
:should_fail: 0
:tags: 14.3
*/
module top(input clk);
wire clk;
default clocking @(posedge clk);
default input #10ns output #5ns;
endclocking
endmodule