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