2021-03-29 13:00:25 -05:00
|
|
|
// Regression test for #83606.
|
|
|
|
|
|
|
|
fn foo<const N: usize>(_: impl std::fmt::Display) -> [usize; N] {
|
|
|
|
[0; N]
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2022-05-09 09:14:43 -05:00
|
|
|
let _ = foo("foo");
|
2023-01-14 12:32:17 -06:00
|
|
|
//~^ ERROR: type annotations needed for `[usize; N]`
|
2021-03-29 13:00:25 -05:00
|
|
|
}
|