11 lines
174 B
Coq
11 lines
174 B
Coq
|
|
// Check that dynamic arrays can not be used in single operand continuous assignment l-value concatenations.
|
||
|
|
|
||
|
|
module test;
|
||
|
|
|
||
|
|
int d[];
|
||
|
|
int y;
|
||
|
|
|
||
|
|
assign {d} = y;
|
||
|
|
|
||
|
|
endmodule
|