-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Trait coercion may ask for a static bound #11612
Comments
cc me |
Just had this same problem, in a slightly different situation. In my failing code, the trait is templated, and the struct is empty. It's just for a function wrapper. Same error, and casting it explicitly to the trait type works. If it makes a difference, there are type bounds on T in the impll but none in the trait. I can try to reduce the code to something simpler and standalone to post if that would help. |
I have the same problem, but with Box insted of & (and a slightly different setup)
won't compile unless I change
|
@Naicode Yep, that's the same issue. I have a pull which should hopefully land sometime today to fix it. |
Closed by #14682 |
Compiles with:
If I change it to
foo(b as &A)
the code compiles just fine. Perhaps a coercion bug?cc @pcwalton, @luqmana
The text was updated successfully, but these errors were encountered: