`GetXAnalyzer.IsNullCheck` doesn't recognize `is not null`. The first code fragment raises _REFL0009_: ```csharp var property = type.GetProperty(PropertyName); if (suppressionsProperty is not null) ``` The second does not: ```csharp var property = type.GetProperty(PropertyName); if (suppressionsProperty != null) ```