module top; reg a, b, c, d, e; wor out; assign out = a; assign out = b; assign out = c; assign out = d; assign out = e; initial begin a = 1'b0; b = 1'b0; c = 1'b1; d = 1'b0; e = 1'b0; #1; if (out !== 1'b1) $display("FAILED: expected 1'b1, got %b", out); else $display("PASSED"); end endmodule