You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rubberduck version [2.5.2.6080]
Operating System: [Microsoft Windows NT 10.0.19044.0, x64]
Host Product: [Microsoft Office x64]
Host Version: [16.0.15726.20202]
Host Executable: [EXCEL.EXE]
Description
Inspection false positive when using a let property to refer to another let property.
To Reproduce
Causes "Property let accessor 'Test' is not used.":
Private Value As String
Private Property Get Test() As String
Test = Value
End Property
Private Property Let Test(ByVal RHS As String)
Value = RHS
End Property
Public Property Let DuplicateTest(ByVal RHS As Double)
Test = RHS
End Property
Expected behavior
No "is not used" inspection on Let Test
Additional context
When using Find all references on Test within DuplicateTest the reference is Get Test when it should really be Let Test.
The text was updated successfully, but these errors were encountered:
Rubberduck version information
Description
Inspection false positive when using a let property to refer to another let property.
To Reproduce
Expected behavior
No "is not used" inspection on
Let Test
Additional context
When using Find all references on
Test
withinDuplicateTest
the reference isGet Test
when it should really beLet Test
.The text was updated successfully, but these errors were encountered: