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