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

False positive PH2089: Anonymous object initialization mistaken for Assignment in condition #776

Open
jafaber opened this issue Sep 30, 2024 · 0 comments

Comments

@jafaber
Copy link

jafaber commented Sep 30, 2024

Simplified minimal example.

using System;

int blah1 = 10;

if(Log(new{ BLAH = blah1 })) // <---  PH2089: Assignment in condition.
{
}

bool Log(object x) {
    Console.WriteLine(x);
    return true;
}
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