|
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 |
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);
}
}