Below code falsely reports the "Possible NullReferenceException" warning:
C#using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
var builder = WebApplication.CreateBuilder();
if(builder is null)
{
throw new Exception("Create builder failed");
}
var configuration = builder.Configuration;