dotnet / fsharp

The F# compiler, F# core library, F# language service, and F# tooling integration for Visual Studio
https://dotnet.microsoft.com/languages/fsharp
MIT License
3.9k stars 783 forks source link

Nullness issue - Option.toObj infers input to be an option of a nullable type #17727

Open kerams opened 1 month ago

kerams commented 1 month ago

Issue description

When trying to pass a string option value to a null-agnostic method taking string using Option.toObj, the input type gets inferred as string | null option.

Choose one or more from the following categories of impact

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.100-rc.1.24452.12

Reproducible code snippet and actual behavior

// assembly A, null-agnostic
let work (x: string) = ()

// assembly B, null-aware
let whatever x =
    work (Option.toObj x)

The type of whatever is inferred to be string | null option -> unit, but string option -> unit seems more reasonable.

Possible workarounds

let whatever (x: string option) =
    work (Option.toObj x)
vzarytovskii commented 1 month ago

Thanks, yeah, that should infer non-nullable. We are likely not make it the fix before sdk freeze (next Monday), but following release.

T-Gro commented 1 month ago

Yes, that does make more sense. I believe that in this case, the inference for the "work" agnostic function took precedence. The call will still work and will be open to a bigger variety of inputs for "whatever", however quickly becomes a negative once there are more lines working with "x" further below.

In the general case (ignoring ofObj), the inference should favour values without null, but fslib functions were special cased in a few places.

abonie commented 1 month ago

@kerams the title says ofObj, but you meant toObj, correct?