iverilog/ivtest/ivltests/sv_void_cast4.v

12 lines
153 B
Verilog

// Check that void casts on SystemFunctions is supported
module test;
initial begin
void'($clog2(10));
$display("PASSED");
end
endmodule