Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to make the F# compiler treat incomplete pattern matches as errors? [duplicate]

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

like image 604
sgtz Avatar asked Nov 20 '22 11:11

sgtz


1 Answers

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).

like image 117
Sehnsucht Avatar answered Dec 06 '22 09:12

Sehnsucht