blob: 01bbe55415d4b1c6e38f19b13fd131bb9405ef1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0770]: the type of const parameters must not depend on other generic parameters
--> $DIR/issue-71381.rs:14:82
|
LL | pub fn call_me<Args: Sized, const IDX: usize, const FN: unsafe extern "C" fn(Args)>(&self) {
| ^^^^ the type must not depend on the parameter `Args`
error[E0770]: the type of const parameters must not depend on other generic parameters
--> $DIR/issue-71381.rs:23:40
|
LL | const FN: unsafe extern "C" fn(Args),
| ^^^^ the type must not depend on the parameter `Args`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0770`.
|