Closed
Description
As desribed rust-lang/cargo#4323, see @kennytm comment here:
The problem here is that, when using "simple errors", the type
nom::simple_errors::Err<E>
is simply a type alias ofnom::ErrorKind<E>
, while with "verbose errors" the typenom::verbose_errors::Err<E>
is a dedicated enum, so the "with-feature" and "without-feature" interfaces are incompatible.