The type of a const parameter references other generic parameters.
Erroneous code example:
#![allow(unused)]
fn main() {
fn foo<T, const N: T>() {} // error!
} To fix this error, use a concrete type for the const parameter:
#![allow(unused)]
fn main() {
fn foo<T, const N: usize>() {}
}
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/error_codes/E0770.html