Project
ReSharper
Priority
Critical
Type
Bug
Fix versions
5.1
State
Can't Reproduce
Assignee
Olga Lobacheva
Subsystem
PSI
Affected versions
No Affected versions
Fixed in build
5.0.1625.47  
  • Created by   Vladimir Reshetnikov
    2 years ago (02 Nov 2009 13:33)
  • Updated by   Olga Lobacheva
    18 months ago (14 Jul 2010 18:52)
  • Jira: RSRP-128326
    (history, comments)
 
RSRP-128326 False ambiguous invocation (named arguments)
0
Issue is visible to: All Users
  The issue is visible to the selected user group only
using System;
using System.Collections;

class C
{
	static void Main()
	{
		Foo<ulong>(x:1, y:1);
	}

	static void Foo<T>(long? x, T y)
	{
		Console.WriteLine(1);
	}

	static void Foo<T>(long? y, ulong x)
	{
		Console.WriteLine(2);
	}
}
Comments (0)
 
History
 
Linked Issues (?)
 
TeamCity Changes (0)
 
Issue has no comments