iverilog/ivtest/ivltests/br_gh411.v

13 lines
128 B
Verilog

module test();
function void do_nothing();
;
endfunction
initial begin
do_nothing();
$display("PASSED");
end
endmodule