| Priority |
Show-stopper |
| Type | Bug |
| State | |
| Assignee | Andrey Simanovsky |
| Subsystem | No subsystem |
| Affected versions |
No affected versions
|
| Fixed in |
3.0.2
|
| Fixed in build | Next build |
RSRP-43490 |
Create overload without parameter quickfix doens't work with ByRef parameters |
|
|
Sub foo(ByRef a As Integer, ByVal b As List(Of Object), ByVal c As Class1) End Sub
Sub foo(ByVal b As List(Of Object), ByVal c As Class1)
Dim a As Integer = [Nothing]
foo(a, b, c)
End Sub