Using VS 2022, .Net 6.0, I thought this was correct :
public static void test(List<String> list = null)
{ }
but compiler warns me :
CS8625 Cannot convert null literal to non-nullable reference type
List<T> should be nullable by definition, right?
