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
I haven't quite gotten a minimized test case yet, but I have seen ICEs related to this when you have a Deref implementation that has trait bounds on some type parameters. I'm creating a placeholder bug so I can tag some FIXME's here and there. I'll try to get a reduced test case soon.
@eddyb says he knows what's going on here, so I haven't tried too hard to minimize this just yet.
The text was updated successfully, but these errors were encountered:
This commit removes the `get()` method from `Ref` and `RefMut` in favor of the `*` operator, and removes all usage of the `deref()` function manually from rustc, favoring using `*` instead.
Some of the code is a little wacky, but that's due to either #13044 or #13042
I haven't quite gotten a minimized test case yet, but I have seen ICEs related to this when you have a
Deref
implementation that has trait bounds on some type parameters. I'm creating a placeholder bug so I can tag some FIXME's here and there. I'll try to get a reduced test case soon.@eddyb says he knows what's going on here, so I haven't tried too hard to minimize this just yet.
The text was updated successfully, but these errors were encountered: