13 lines
128 B
Coq
13 lines
128 B
Coq
|
|
module test();
|
||
|
|
|
||
|
|
function void do_nothing();
|
||
|
|
;
|
||
|
|
endfunction
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
do_nothing();
|
||
|
|
$display("PASSED");
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|