-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Closed
Labels
Area-IDEBugIDE-CodeStyleBuilt-in analyzers, fixes, and refactoringsBuilt-in analyzers, fixes, and refactoringshelp wantedThe issue is "up for grabs" - add a comment if you are interested in working on itThe issue is "up for grabs" - add a comment if you are interested in working on it
Milestone
Description
Version Used: Visual Studio 2019 Version 16.5
Steps to Reproduce:
class Class
{
static bool Value() => default;
static void Main()
{
if (Value()/**/)
{
}
}
}
+Expected Behavior
-Actual Behavior
class Class
{
static bool Value => default;
static void Main()
{
+ if (Value/**/)
- if (Value)
{
}
}
}
Metadata
Metadata
Assignees
Labels
Area-IDEBugIDE-CodeStyleBuilt-in analyzers, fixes, and refactoringsBuilt-in analyzers, fixes, and refactoringshelp wantedThe issue is "up for grabs" - add a comment if you are interested in working on itThe issue is "up for grabs" - add a comment if you are interested in working on it