13 lines
150 B
Coq
13 lines
150 B
Coq
|
|
// Check that queues can not be used in l-value concatenations.
|
||
|
|
|
||
|
|
module test;
|
||
|
|
|
||
|
|
int x;
|
||
|
|
int q[$];
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
{x, q} = x;
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|