sv2v/test/basic/empty_task.sv

10 lines
130 B
Systemverilog
Raw Normal View History

module top;
task t;
input x;
begin : y
reg z;
end
endtask
initial t(0);
endmodule