Should not raise in complex scenarios related to Roslyn LVA:
Finally should link predecessors/sucessors to all blocks of try.
public void UsedInFinally_Throw()
{
var value = 42; // Noncompliant FP related to LVA
try
{
throw new Exception();
}
finally
{
Use(value);
}
}