fsharp-hedgehog
fsharp-hedgehog copied to clipboard
Warn if some value is unused
There is a bug in F# that prevents this project from turning on warnings for unused values.
property {
let! i = Gen.alpha // The value 'i' is reported as unused
where true
return i = i
}
Blocked by F# bug https://github.com/dotnet/fsharp/issues/10167
I guess you could rename i
to _i
to work around it.