Open kerams opened 2 months ago
Desribed in https://github.com/fsharp/fslang-design/blob/main/RFCs/FS-1060-nullable-reference-types.md#meaning-of-unbox, perhaps forgotten or ignored for the time being?
I think there are two perspectives:
[NotNullIfNotNull]
in C# flow analysis), even though this might complicate downcasting-heavy code.This is further complicated by the fslib Unboxing functions doing a runtime lookup, where nullness information is no longer known.
A solution which would insist on downcasting a nullable source into a nullable target ( :?> string | null
) would only work on target types which can carry nullness, which is not equal to all types that can be downcasted to (tuples, anon records).
A safe but not all-scenarios-covering change would be:
| null
, report a nullness warning if it isn'tWould that meet the expectations here?
((null: obj | null) :?> string).Length
This shouldn't throw an NRE but should throw an exception during the :?>
string
cast.
f(x: string | null) = x :?> string
should succeed if x
is a string
, and fail if x
is null
(since, post NRTs, null
is not a string
).
No separate warning should be given since now new danger is introduced: :?>
is known to throw if the LHS is not of the type on the RHS.
If there is a warning it should apply to all uses of :?>
("don't use this").
but should throw an exception during the :?> string cast
Feel free to take up that breaking change (which is what a different exception constitutes, I think) with the runtime team (unless you're suggesting F# should start injecting extra null checks before the unbox.any
instruction).
Issue description
Downcasting is an operation that returns
null
when input isnull
. However, when the explicit coercion type is not nullable, the downcasting result currently won't be nullable either. Either a nullable type should be required (:?> string | null
) or the downcasting operator should automatically adjust nullness based on the input type.Choose one or more from the following categories of impact
null
constructs in code not using the checknulls switch.null
,not null
).Operating System
Windows (Default)
What .NET runtime/SDK kind are you seeing the issue on
.NET SDK (.NET Core, .NET 5+)
.NET Runtime/SDK version
9.0.0-preview.7.24405.7
Reproducible code snippet and actual behavior
No warning, throws NRE.
Possible workarounds
No response