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

CC0006 : should not trigger when loop variable used in multiple places. #1035

Open
RachelDavids opened this issue Aug 26, 2019 · 0 comments
Open

Comments

@RachelDavids
Copy link

#Bug
Should not trigger when loop variable used in loop &/or non-standard increment.

public void Test()
{
    int[] ints = {1, 2, 3, 4, 5, 6, 7, 8};
    for (int j = 0; j < ints.Length; j += 2)
    {
        int a = ints[j];
        int b = ints[j + 1];
    }
}

Current output after fix applied (generates uncompilable code.):

public void Test()
{
    int[] ints = {1, 2, 3, 4, 5, 6, 7, 8};
	foreach (var a in ints)
	{
		int b = ints[j + 1];
	}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant