mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-08-28 16:53:45 +02:00
Add regression tests that check that declaring a net of type class, dynamic array, queue or string result in an error. Signed-off-by: Lars-Peter Clausen <[email protected]>
11 lines
158 B
Verilog
11 lines
158 B
Verilog
// Check that declaring a net of a dynamic array type results in an error
|
|
|
|
module test;
|
|
|
|
wire x[];
|
|
|
|
initial begin
|
|
$display("FAILED");
|
|
end
|
|
endmodule
|