ReSharper 2021.3 Help

Code Inspection: Heuristically unreachable switch arm due to integer analysis

This inspection reports arms of switch expressions that will never be executed according to the results of integer value analysis. The inspection only works if Analyze integer arithmetic is enabled on the Code Inspection | Settings page of ReSharper options (Alt+R, O).

Here is an example of annotating the method parameter with [NonNegativeValueAttribute] to refine the analysis within the method body. Knowing that the parameter is non-negative, ReSharper can report redundant cases:

void TestSwitch([NonNegativeValue] int input) { var newValue = input switch { 0 => 1, -1 => 0, // Case is heuristically unreachable _ => input, }; }
Last modified: 07 April 2022