Spotted by @Gankro : ```rust fn main() { let mut x: u64 = 0; let y: u32 = 0; x += y as _; // Compiles on stable, fails on beta/nightly } ```