When using “Local functions” C# feature some variables may be captured by local function and this may cause false positive for S1854.
The following code produces it in line 3.
public int Test()
{
int i = 5;
return Square();
// Local function
int Square() => i * i;
}