Files
iverilog/ivtest/ivltests/net_darray_fail.v
T

11 lines
158 B
Verilog
Raw Normal View History

// Check that declaring a net of a dynamic array type results in an error
module test;
wire x[];
initial begin
$display("FAILED");
end
endmodule