13 lines
169 B
Coq
13 lines
169 B
Coq
|
|
// Check that dynamic arrays can not be used in single operand l-value concatenations.
|
||
|
|
|
||
|
|
module test;
|
||
|
|
|
||
|
|
int x;
|
||
|
|
int d[];
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
{d} = x;
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|