-
Notifications
You must be signed in to change notification settings - Fork 277
Closed
Description
Bug
Using CC 1.0.3:
using System.Linq;
class Foo
{
void M()
{
var xs = new System.Collections.Generic.List<int>();
xs.Select(x => Func<int>(x));
}
object Func<T>(object x) => x;
}After apply suggesting fix, got CS0123 No overload for 'Foo.Func<int>(object)' matches delegate 'Func<int, object>'
We should not offer a diagnostic in this situation.
Reactions are currently unavailable