Files
sv2v/test/basic/empty_task.sv
Zachary Snow 2a2d819baa additional codegen test coverage
- assertions, gen case, and inout
- simplify block codegen
- remove blank lines in tasks with no inputs
2020-12-11 12:41:59 -07:00

10 lines
130 B
Systemverilog

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