I'm looking for the warning number for incomplete pattern matches. Anyone know what it is?
More fully, I want to make FSC.EXE return incomplete pattern matches as compile-time errors rather than warnings + run-time exceptions. Does anyone know what the warning number for this is? Specifically, this relates to compiled .fs / interactive FSI .fsx REPL interaction.
The warning:
Incomplete pattern matches on this expression. For example, the value 'LaLaLa (_)' may indicate a case not covered by the pattern(s).
How to customise:
see "--warnaserror[+|-] []"
ref: https://msdn.microsoft.com/en-us/library/dd233171(v=vs.140).aspx
use --warnaserror+:25
To know which one it was I simply produced myself the warning using let f (Some x) = x
which gaves me warning FS0025: Incomplete pattern matches on this expression. For e
xample, the value 'None' may indicate a case not covered by the pattern(s).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With