a7b03ad4ed
Fix #71584, fix #69683.
6 lines
114 B
Rust
6 lines
114 B
Rust
fn main() {
|
|
let n: u32 = 1;
|
|
let mut d: u64 = 2;
|
|
d = d % n.into(); //~ ERROR type annotations needed
|
|
}
|