From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- .../incorrect-number-of-const-args.stderr | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/test/ui/const-generics/incorrect-number-of-const-args.stderr (limited to 'src/test/ui/const-generics/incorrect-number-of-const-args.stderr') diff --git a/src/test/ui/const-generics/incorrect-number-of-const-args.stderr b/src/test/ui/const-generics/incorrect-number-of-const-args.stderr new file mode 100644 index 000000000..a845454f7 --- /dev/null +++ b/src/test/ui/const-generics/incorrect-number-of-const-args.stderr @@ -0,0 +1,35 @@ +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>(); + | ^^^ - supplied 1 generic argument + | | + | expected 2 generic arguments + | +note: function defined here, with 2 generic parameters: `X`, `Y` + --> $DIR/incorrect-number-of-const-args.rs:1:4 + | +LL | fn foo() -> usize { + | ^^^ -------------- -------------- +help: add missing generic argument + | +LL | foo::<0, Y>(); + | +++ + +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>(); + | ^^^ - help: remove this generic argument + | | + | expected 2 generic arguments + | +note: function defined here, with 2 generic parameters: `X`, `Y` + --> $DIR/incorrect-number-of-const-args.rs:1:4 + | +LL | fn foo() -> usize { + | ^^^ -------------- -------------- + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0107`. -- cgit v1.2.3