12 lines
164 B
Coq
12 lines
164 B
Coq
|
|
// Check that queues can not be used in continuous assignment l-value concatenations.
|
||
|
|
|
||
|
|
module test;
|
||
|
|
|
||
|
|
int x;
|
||
|
|
int q[$];
|
||
|
|
int y;
|
||
|
|
|
||
|
|
assign {x, q} = y;
|
||
|
|
|
||
|
|
endmodule
|