You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Diagnostic Ids: IDE0072 (Populate switch); CS8510 (The pattern is unreachable. It has already been handled by a previous arm of the switch expression or it is impossible to match.)
Expected Behavior:
No diagnostic to be reported on the first switch expression, as it is complete.
Actual Behavior: IDE0072 is reported on the switch, indicating the analyzer believes that there is a missing branch; however (var z, _) covers all remaining cases.
The text was updated successfully, but these errors were encountered:
Version Used: Compiler version: '4.12.0-3.24523.4 (f3348c2)'. Language version: latest (13.0).
Steps to Reproduce:
EnforceCodeStyleInBuild
AnalysisLevel
tolatest-all
Diagnostic Ids: IDE0072 (Populate switch); CS8510 (The pattern is unreachable. It has already been handled by a previous arm of the switch expression or it is impossible to match.)
Expected Behavior:
No diagnostic to be reported on the first
switch
expression, as it is complete.Actual Behavior:
IDE0072
is reported on theswitch
, indicating the analyzer believes that there is a missing branch; however(var z, _)
covers all remaining cases.The text was updated successfully, but these errors were encountered: