You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the following example (reduced from a more complex pattern matching)
letfl=match l with_::l -> l |_ -> l
ocamllint warns about the two branches of the pattern matching being identical, while the two l identifiers do not refer to the same thing at all and should not really be considered equal.
In the following example (reduced from a more complex pattern matching)
ocamllint warns about the two branches of the pattern matching being identical, while the two
lidentifiers do not refer to the same thing at all and should not really be considered equal.