When the Nullable context is disabled, the nullable forgiving operator is a no-op. There's no need to use it. ```csharp #nullable disable string s = Method(); _ = s!.ToString(); // Noncompliant, as it's noop and just adds noise ```