Const parameters cannot depend on type parameters. The following is therefore invalid:
fn const_id<T, const N: T>() -> T { // error N }
Back to list of error codes