rust/tests/ui/const-generics/incorrect-number-of-const-args.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.2 KiB
Plaintext
Raw Normal View History

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