sv2v/test/basic/uniop_prec.sv

6 lines
99 B
Systemverilog

module Example(a, b);
input logic [1:0] a;
output logic b;
assign b = !(&a);
endmodule