and invoke "use base type where possible" on class FooBaz to replace some of its usages with usages of Object, the code snippet above isn't changed. It should change it to:
Dim fb As Object
fb = New FooBaz("")
fb.GetHashCode()
Description
When I have code
Dim fb As FooBaz("")
fb.GetHashCode()
and invoke "use base type where possible" on class FooBaz to replace some of its usages with usages of Object, the code snippet above isn't changed. It should change it to:
Dim fb As Object
fb = New FooBaz("")
fb.GetHashCode()