iverilog/ivtest/ivltests/uwire_fail.v

9 lines
147 B
Verilog

module top;
uwire two;
assign two = 1'b1;
assign two = 1'b0;
initial $display("Failed: this should be a compile time error!");
endmodule