blob: 42f71b4f70cd08df6fc7b4eb7b347301bdf965dd [file] [log] [blame]
/*
:name: void
:description: void type tests
:should_fail: 0
:tags: 6.13
*/
module top();
function void fun();
$display("void fun");
endfunction
initial
fun();
endmodule