|
Project
|
ReSharper
|
|
Priority
|
Normal |
|
Type
|
Bug |
|
Fix versions
|
5.1.1 |
|
State
|
Fixed |
|
Assignee
|
Olga Lobacheva |
|
Subsystem
|
Psi |
|
Affected versions
|
No Affected versions |
|
Fixed in build
|
using System;
using System.Collections;
using System.Collections.Generic;
class D
{
static void Main()
{
Console.WriteLine(new D() == (Action)null); // error CS0019: Operator '==' cannot be applied to operands of type 'D' and 'System.Action'
}
public static implicit operator D(Action x)
{
return null;
}
}