Area-IDEBugIDE-CodeStylehelp wanted
描述
Version Used: Visual Studio 2019 version 16.0
Steps to Reproduce:
var x = 3;
x = x + 2;
Console.WriteLine(x);
Apply Inline temporary variable on the definition of x.
Expected Behavior:
var x = 3 + 2;
Console.WriteLine(x);
Actual Behavior:
var x = 3;
x = 3 + 2;
Console.WriteLine(3);