Closed
Description
Bug
In cases where one branch of an if increments a variable and the other assigns a value to it then CC0014 should not offer a fix.
Dim s As String
If True Then
s += "a"
Else
s = "b"
End If
Current output after fix applied:
s += If(True, "a", "b")
Fix should go to branch v1.0.x
.
@bergarces is working on it.