iverilog/ivtest/ivltests/br1027b.v

10 lines
85 B
Verilog

module test();
task t(a, b);
$display(a,,b);
endtask
initial t(0, 1);
endmodule