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
When trying to build clippy off of a clean master, I get the following failure:
error[E0624]: associated function `seek_after` is private
--> clippy_lints/src/redundant_clone.rs:594:25
|
594 | self.maybe_live.seek_after(at);
| ^^^^^^^^^^ private associated function
error: aborting due to previous error
I poked around in rustc_mir and guess that this is the culprit - the timing matches up with when I started seeing breakages locally while testing: rust-lang/rust@65b4482
It looks like changing this to seek_after_primary_effect fixes the build - I'll put up a PR to do that.
The text was updated successfully, but these errors were encountered:
When trying to build clippy off of a clean master, I get the following failure:
I poked around in rustc_mir and guess that this is the culprit - the timing matches up with when I started seeing breakages locally while testing: rust-lang/rust@65b4482
It looks like changing this to seek_after_primary_effect fixes the build - I'll put up a PR to do that.
The text was updated successfully, but these errors were encountered: