**Version Used**: Latest VS 2022 **Steps to Reproduce**: ```cs using System.Text.Json; var options = new JsonSerializerOptions$$ ``` Press `Shift + Enter` to trigger smart break line at `$$` **Expected Behavior**: Constructor parentheses should not be inserted since I didn't have them. I may want to skip them entirely as it is valid syntax: ```cs using System.Text.Json; var options = new JsonSerializerOptions { $$ }; ``` **Actual Behavior**: Constructor parentheses are still inserted: ```cs using System.Text.Json; var options = new JsonSerializerOptions() { $$ }; ```