SonarSource/sonar-dotnet

Fix T0008 FP: Nested abstract class should not be with other nested members

Opened this issue · 0 comments

public class Sample
{
    public void Go() { }

    protected abstract class Nested { } // Noncompliant FP, it should be at the end with other classes
}