### Repro steps ```csharp void Repro(bool condition) { byte[]? tempArray = null; _ = condition ? tempArray = new byte[42] // Noncompliant FP : new byte[24]; if (tempArray != null) { Console.WriteLine(tempArray); } } ```