10 lines
125 B
Coq
10 lines
125 B
Coq
|
|
// Check that void casting an expression results in an error
|
||
|
|
|
||
|
|
module test;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
void'(1+2);
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|