Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
inference
/
issue-83606.rs
blob: c387046e91008f6ad823e9c233f9b2c038068e35 [
file
] [
log
] [
blame
]
// Regression test for #83606.
fn
foo
<
const
N
:
usize
>(
_
:
impl
std
::
fmt
::
Display
)
->
[
usize
;
N
]
{
[
0
;
N
]
}
fn
main
()
{
let
_
=
foo
(
"foo"
);
//~^ ERROR: type annotations needed for `[usize; N]`
}