Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
inference
/
issue-71584.rs
blob: 7e4d45ec4a04271e72b68f29de762c33b247883f [
file
] [
log
] [
blame
] [
edit
]
//@ 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
}