You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning CS8619: Nullability of reference types in value of type '<anonymous type: string[] Configurations>' doesn't match target type '<anonymous type: string[]? Configurations>'.
It seems the nullable noNullArray ends up being a non-nullable type at some point, causing a type mismatch in the anonymous type.
Version Used:
Steps to Reproduce:
Repro: https://lab.razor.fyi/#fY9BSwMxEIXp3jI3exLxMOSk0IZkoQVZREQvCop4FcEY0yWyJiXJbpUlf8R_4L-UDdUtHrwMj_e9x8zAVwFw513t5RtTYfpZgGpkCLj1oAdExBBlNAo7Z17wRhp7dJztHggJ0Rtb48PjGdq2ac69lx94mnX1B7vb3YDe4C_EHumlfm5rOkN6rxstg6aYKgBCOulx7d2rVvHKrlzYdocSEEIGnQW5cHZl6tbLaJzNsZ91s4GnPP-Lj_eNhVTlTxMkmO4t2JLxecnKpVicMCHKg33BGWd8vva6M3ozEnooBONM8B020utChafJ--Qb
Sample code:
Expected Behavior:
No warning
Actual Behavior:
It seems the nullable
noNullArrayends up being a non-nullable type at some point, causing a type mismatch in the anonymous type.