|
Project
|
ReSharper
|
|
Priority
|
Major |
|
Type
|
Bug |
|
Fix versions
|
No Fix versions |
|
State
|
Open |
|
Assignee
|
Evgeny Pasynkov |
|
Subsystem
|
PSI |
|
Affected versions
|
No Affected versions |
|
Fixed in build
|
No Fixed in build |
Public Class B
Public Function Bar (ByVal a As A) As Object
Dim x as Integer = a.Foo(1, 2, 3) ''' Should be resolved
End Function
End Class
using System;
using System.Runtime.CompilerServices;
public class A
{
[IndexerName("Foo")]
public int this[int integer, int i, int integer1]
{
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
}
}
|
|
|
|
|
|