14 lines
192 B
Coq
14 lines
192 B
Coq
|
|
// Check that using the class new operator on a dynamic array variable results
|
||
|
|
// in an error.
|
||
|
|
|
||
|
|
module test;
|
||
|
|
|
||
|
|
int i[];
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
i = new;
|
||
|
|
$display("FAILED");
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|