(C4101) Textual subroutines using redundant local variables
SubroutineF1
is defined to be a function with input parameterX
that returns an integerY
and has two local variables (A
andB
) defined:A=B;
B=X+3;
Y=B;
return(Y)In this case,A
is a redundant local variable.