sv2v/test/basic/empty_task.sv

10 lines
130 B
Systemverilog

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