2024-02-16 20:02:50 +00:00
|
|
|
//@ ignore-windows different list of satisfying impls
|
2020-05-06 22:26:03 +00:00
|
|
|
fn main() {
|
|
|
|
let n: u32 = 1;
|
|
|
|
let mut d: u64 = 2;
|
2022-10-19 15:17:19 +00:00
|
|
|
d = d % n.into();
|
|
|
|
//~^ ERROR type annotations needed
|
2020-05-06 22:26:03 +00:00
|
|
|
}
|