Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
36edd2bd845c2e56e36b75d2696ae7a98914e2a8
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-6
/
6.13--void.sv
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