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