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
So, I've been fuzz testing rustc nightly using a range of generated programs and am digesting the findings. This one stood out to me:
fn main() {
let mut x = 1;
{
let mut y = &mut x;
y = y;
y;
}
x;
}
This currently reports an E0505 on the playground and Rust nightly. However, removing the nop y=y; and its fine. This feels like a bug to me ... thoughts?