iverilog/ivtest/ivltests/net_string_fail.v

11 lines
154 B
Coq
Raw Normal View History

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