13 lines
209 B
Coq
13 lines
209 B
Coq
|
|
// Check that blocking assignment to a const variable fails.
|
||
|
|
|
||
|
|
module test;
|
||
|
|
|
||
|
|
const integer x = 10;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
x = 20; // Error: Assignment to const variable
|
||
|
|
$display("FAILED");
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|