-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Coherence rule changes in latest nightly break parser-combinators #27
Comments
👍 |
That's an annoying breaking change. Guess the |
hawkw
added a commit
to hawkw/seax
that referenced
this issue
Apr 3, 2015
Fixes the build with latest Rust nightly. See Marwes/combine#26 and Marwes/combine#27
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
impl
s forStream
for&str
and&[T]
now conflict with that forI: Iterator + Clone
.This is due to the changes in rust-lang/rust#23867, in particular the negative reasoning as demonstrated in the
Replacer
example.The problem in this case, iiuc, is that
&str
and&[T]
could one day decide to implementIterator
.The text was updated successfully, but these errors were encountered: