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

Fix S3267 FN: Support list pattern #6387

Closed
cristian-ambrosini-sonarsource opened this issue Nov 21, 2022 · 0 comments · Fixed by #6414
Closed

Fix S3267 FN: Support list pattern #6387

cristian-ambrosini-sonarsource opened this issue Nov 21, 2022 · 0 comments · Fixed by #6414
Assignees
Labels
Type: False Negative Rule is NOT triggered when it should be.
Milestone

Comments

@cristian-ambrosini-sonarsource
Copy link
Contributor

Description

FN for S3267 (LoopsAndLinq).

Using C#11 list pattern, the rule is not raising an issue.

Repro steps

        void ListPattern(List<int[]> list)
        {
            foreach (int[] array in list) // FN
            {
                if (array is [1, 2, 3]) // FN
                {
                    Console.WriteLine("Test");
                }
            }
        }

Expected behavior

The rule should raise an issue.

Actual behavior

The rule does not raise an issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Type: False Negative Rule is NOT triggered when it should be.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants