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