-
Notifications
You must be signed in to change notification settings - Fork 833
Labels
Area-NullnessIssues related to handling of Nullable Reference TypesIssues related to handling of Nullable Reference TypesBugImpact-Medium(Internal MS Team use only) Describes an issue with moderate impact on existing code.(Internal MS Team use only) Describes an issue with moderate impact on existing code.
Milestone
Description
Issue description
If in a pattern match, the first branch returns a non-nullable ref type, the overall expression is (correctly) inferred to be of that type. However, subsequent branches allow you to still return nulls.
Choose one or more from the following categories of impact
- Unexpected nullness warning (false positive in nullness checking, code uses --checknulls and langversion:preview).
- Missing nullness warning in a case which can produce nulls (false negative, code uses --checknulls and langversion:preview).
- Breaking change related to older
null
constructs in code not using the checknulls switch. - Breaking change related to generic code and explicit type constraints (
null
,not null
). - Type inference issue (i.e. code worked without type annotations before, and applying the --checknulls enforces type annotations).
- C#/F# interop issue related to nullness metadata.
- Other (none of the categories above apply).
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
.NET 9
Reproducible code snippet and actual behavior
let z = // inferred as a string
match false with
| true -> "Test".ToUpper()
| false -> null // no warning here!
z.Length // no warning here, pop
z
is (apparently) inferred to be string
, yet the false
branch is permitted.
Possible workarounds
Putting in an explicit annotation forces the compiler to give FS3261:
let z : string =
match false with
| true -> "Test".ToUpper()
| false -> null // FS3261
Related to #18012 perhaps.
Metadata
Metadata
Assignees
Labels
Area-NullnessIssues related to handling of Nullable Reference TypesIssues related to handling of Nullable Reference TypesBugImpact-Medium(Internal MS Team use only) Describes an issue with moderate impact on existing code.(Internal MS Team use only) Describes an issue with moderate impact on existing code.
Type
Projects
Status
Done