How to tell in SystemVerilog that one of the module's outputs is directly connected to one of it's inputs?
Does it depend on the modeling level used? If yes, what is the right way for switch level?
module abc (input in1, in2, output out1, out2, out3);
// out3 needs to be directly connected to in1
// ...
endmodule
assign out3 = in1;?