15 lines
190 B
Coq
15 lines
190 B
Coq
|
|
// Check that declaring a queue typed member in a packed union is an
|
||
|
|
// error.
|
||
|
|
|
||
|
|
module test;
|
||
|
|
|
||
|
|
union packed {
|
||
|
|
int x[$];
|
||
|
|
} s;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
$display("FAILED");
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|