| Priority |
Major |
| Type | Bug |
| State | Fixed |
| Assignee | Dmitry Lomov |
| Subsystem | No subsystem |
| Affected versions |
No affected versions
|
| Fixed in |
3.0.2
|
| Fixed in build |
Next build |
| Build |
454
|
RSRP-42562 |
Problem with type inference |
|
|
using System.Collections.Generic;
class Stuff
{
static void Foo<T>(IList<IEnumerable<T>> x)
{
}
static void Main()
{
string[] s = { };
Foo(s); // ReSharper shows bogus error here
}
}