RefactoringEssentials icon indicating copy to clipboard operation
RefactoringEssentials copied to clipboard

RECS0135 not firing in recusive converter

Open shmuelie opened this issue 9 years ago • 1 comments

If you create a converter operator that has infinite recursion RECS0135 does not fire since it isn't a method call in the C#.

class A
{
    public static implicit operator int(A a) => a; // Should show RECS0135 but does not.
}

shmuelie avatar Sep 21 '16 17:09 shmuelie

Not exactly the same, but related: #257.

Rpinski avatar Sep 27 '16 22:09 Rpinski