dotnet/roslyn
View on GitHubAsynchronous methods and variables not showing unused warning
Open
#52,328 opened on Apr 1, 2021
Area-IDEhelp wanted
Repository metrics
- Stars
- (20,414 stars)
- PR merge metrics
- (Avg merge 6d 17h) (256 merged PRs in 30d)
Description
Version Used: Version 16.9.0 Preview 3.0
Steps to Reproduce:
-
Set a variable to an asynchronous await call var root = await document.GetSyntaxRootAsync(cancellationToken).ConfigureAwait(false))
-
Do not use the variable
-
Create an asynchronous method
-
Do not call the asynchronous method
Expected Behavior: Green underline appears underneath root and method header name indicating that the variable/method is unused.
Actual Behavior: The unused warning does not appear.
Note: I may be missing an option selection that would make it so the warning appears in this case, but I am unsure.