blob: 762fc1a89931d644535a2bc801c67d96f96a5caa [file] [log] [blame]
module test(input A, output Y, Z);
assign Y = A == A, Z = A != A;
endmodule