Following up on this PR feedback: #15548 (review)
[WpfFact, Trait(Traits.Feature, Traits.Features.SmartIndent)]
public async Task DontCreateIndentOperationForBrokenBracketedArgumentList()
{
var code = @"
class Program
{
static void M()
{
string (userInput == ""Y"")
}
}
";
await AssertSmartIndentAsync(
code,
indentationLine: 6,
expectedIndentation: 8);
}
Following up on this PR feedback: #15548 (review)