-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
rustc: where clauses are sometimes silently ignored #18906
Milestone
Comments
I expect the problem is the (incomplete) implementation of where clauses. Something like |
@nikomatsakis points out that this is more likely a problem with |
impl
context
cc #17086 |
P-backcompat-lang, 1.0. |
jroesch
added a commit
to jroesch/rust
that referenced
this issue
Dec 24, 2014
Closes issue rust-lang#18906
jroesch
added a commit
to jroesch/rust
that referenced
this issue
Dec 26, 2014
Closes issue rust-lang#18906
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this issue
Dec 30, 2014
Closes issue rust-lang#18906. This is what we talked about last night/early this morning. r? @nikomatsakis.
Seems this is fixed and even has a test. |
lnicola
pushed a commit
to lnicola/rust
that referenced
this issue
Jan 20, 2025
feat: Re-implement rust string highlighting via tool attribute
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm reasonably sure the problem below is related to multidispatch and its interaction with type inference. It works fine for a standalone function, but not in an
impl
context:The error is:
cc @nikomatsakis
The text was updated successfully, but these errors were encountered: