Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,5 +106,25 @@ public void TestMethod(object?[] arguments)

await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(false);
}

[Fact]
[WorkItem(3708, "https://github.com/DotNetAnalyzers/StyleCopAnalyzers/issues/3708")]
public async Task TestClosingSquareBracketFollowedByRangeAsync()
{
var testCode = @"namespace TestNamespace
{
public class TestClass
{
public void TestMethod(int[] arg)
{
_ = arg[0]..;
_ = arg[0] ..;
}
}
}
";

await VerifyCSharpDiagnosticAsync(testCode, DiagnosticResult.EmptyDiagnosticResults, CancellationToken.None).ConfigureAwait(false);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ private static void HandleCloseBracketToken(SyntaxTreeAnalysisContext context, S
case SyntaxKind.OpenBracketToken:
case SyntaxKind.CloseParenToken:
case SyntaxKind.MinusGreaterThanToken:
case SyntaxKindEx.DotDotToken:
precedesSpecialCharacter = true;
break;

Expand Down