No warning should be reported: ```C# #nullable enable using System.Diagnostics.CodeAnalysis; class C<T> { object _f; C([DisallowNull]T t) { _f = t; // warning CS8601: Possible null reference assignment } } ```
No warning should be reported: