2023-02-23 10:27:06 -07:00
|
|
|
error[E0107]: function takes 2 generic arguments but 1 generic argument was supplied
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/incorrect-number-of-const-args.rs:6:5
|
2020-08-09 06:19:57 +00:00
|
|
|
|
|
|
|
|
LL | foo::<0>();
|
2021-02-18 21:01:44 +01:00
|
|
|
| ^^^ - supplied 1 generic argument
|
2021-01-02 19:45:11 +01:00
|
|
|
| |
|
2021-02-18 21:01:44 +01:00
|
|
|
| expected 2 generic arguments
|
2021-01-02 19:45:11 +01:00
|
|
|
|
|
2021-02-18 21:01:44 +01:00
|
|
|
note: function defined here, with 2 generic parameters: `X`, `Y`
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/incorrect-number-of-const-args.rs:1:4
|
2021-01-02 19:45:11 +01:00
|
|
|
|
|
|
|
|
LL | fn foo<const X: usize, const Y: usize>() -> usize {
|
2022-04-04 12:16:20 -07:00
|
|
|
| ^^^ -------------- --------------
|
2021-02-18 21:01:44 +01:00
|
|
|
help: add missing generic argument
|
2021-01-02 19:45:11 +01:00
|
|
|
|
|
|
|
|
LL | foo::<0, Y>();
|
2021-06-21 19:07:19 -07:00
|
|
|
| +++
|
2020-08-09 06:19:57 +00:00
|
|
|
|
2023-02-23 10:27:06 -07:00
|
|
|
error[E0107]: function takes 2 generic arguments but 3 generic arguments were supplied
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/incorrect-number-of-const-args.rs:9:5
|
2020-08-09 06:19:57 +00:00
|
|
|
|
|
|
|
|
LL | foo::<0, 0, 0>();
|
2021-02-18 21:01:44 +01:00
|
|
|
| ^^^ - help: remove this generic argument
|
2021-01-02 19:45:11 +01:00
|
|
|
| |
|
2021-02-18 21:01:44 +01:00
|
|
|
| expected 2 generic arguments
|
2021-01-02 19:45:11 +01:00
|
|
|
|
|
2021-02-18 21:01:44 +01:00
|
|
|
note: function defined here, with 2 generic parameters: `X`, `Y`
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/incorrect-number-of-const-args.rs:1:4
|
2021-01-02 19:45:11 +01:00
|
|
|
|
|
|
|
|
LL | fn foo<const X: usize, const Y: usize>() -> usize {
|
2022-04-04 12:16:20 -07:00
|
|
|
| ^^^ -------------- --------------
|
2020-08-09 06:19:57 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0107`.
|