summaryrefslogtreecommitdiff
path: root/tests/hana/test_intermout_exprs_bitwiseneg_test.v
blob: 5b62bef09708767eab438c8f04408ccaa9eccdee (plain)
1
2
3
4
5
module test(output out, input in, output [1:0] vout, input [1:0] vin);

assign out = ~in;
assign vout = ~vin;
endmodule