diff options
author | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2015-10-15 15:39:59 +0000 |
---|---|---|
committer | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2015-10-15 15:39:59 +0000 |
commit | b784b65925bd39666a3f7474bb8abc202c94f92b (patch) | |
tree | 4fc7d607e2533cf96cc1113dfd08a15190e60f7d /utils/warnings.mli | |
parent | a09fb037accb1d9266ab8b8db89b1c81d3d958b4 (diff) | |
download | ocaml-b784b65925bd39666a3f7474bb8abc202c94f92b.tar.gz |
add distinct warning for unreachable cases
git-svn-id: http://caml.inria.fr/svn/ocaml/branches/gadt-warnings@16504 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'utils/warnings.mli')
-rw-r--r-- | utils/warnings.mli | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/warnings.mli b/utils/warnings.mli index c9ab96cc3a..286447dbd6 100644 --- a/utils/warnings.mli +++ b/utils/warnings.mli @@ -63,6 +63,7 @@ type t = | Eliminated_optional_arguments of string list (* 48 *) | No_cmi_file of string (* 49 *) | Expect_tailcall (* 50 *) + | Unreachable_case (* 51 *) ;; val parse_options : bool -> string -> unit;; |