Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FN S2190: Add reproducers for issues 6642, 6643 and 6644 #6645

Merged
merged 2 commits into from
Jan 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -600,3 +600,38 @@ public IEnumerable<T> Repeat<T>(T element) // Noncompliant FP, it's not a recur
}
}
}

// https://github.com/SonarSource/sonar-dotnet/issues/6642
public class Repro_6642
{
public int this[int i]
{
get { return this[i]; } // FN
set { this[i] = value; } // FN
}
}

// https://github.com/SonarSource/sonar-dotnet/issues/6643
public class Repro_6643
{
public static implicit operator byte(Repro_6643 d) => d; // FN
}

// https://github.com/SonarSource/sonar-dotnet/issues/6644
public delegate bool SomeDelegate();

public class Repro_6644
{
public event SomeDelegate SomeEvent
{
add
{
SomeEvent += value; // FN
}

remove
{
SomeEvent -= value; // FN
}
}
}