rust/tests/ui/inference/issue-71584.rs
2023-10-06 15:51:04 +00:00

8 lines
172 B
Rust

// 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
}