blob: c96c32d5c0a090e21bd55a185be9e4fb0c111844 [file] [log] [blame]
// ignore-windows different list of satisfying impls
fn main() {
let n: u32 = 1;
let mut d: u64 = 2;
d = d % n.into();
//~^ ERROR type annotations needed
}