From 64d98f8ee037282c35007b64c2649055c56af1db Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:03 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/error-codes/E0061.stderr | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 tests/ui/error-codes/E0061.stderr (limited to 'tests/ui/error-codes/E0061.stderr') diff --git a/tests/ui/error-codes/E0061.stderr b/tests/ui/error-codes/E0061.stderr new file mode 100644 index 000000000..fa4ccbe66 --- /dev/null +++ b/tests/ui/error-codes/E0061.stderr @@ -0,0 +1,35 @@ +error[E0061]: this function takes 2 arguments but 1 argument was supplied + --> $DIR/E0061.rs:6:5 + | +LL | f(0); + | ^--- an argument of type `&str` is missing + | +note: function defined here + --> $DIR/E0061.rs:1:4 + | +LL | fn f(a: u16, b: &str) {} + | ^ ------ ------- +help: provide the argument + | +LL | f(0, /* &str */); + | ~~~~~~~~~~~~~~~ + +error[E0061]: this function takes 1 argument but 0 arguments were supplied + --> $DIR/E0061.rs:9:5 + | +LL | f2(); + | ^^-- an argument of type `u16` is missing + | +note: function defined here + --> $DIR/E0061.rs:3:4 + | +LL | fn f2(a: u16) {} + | ^^ ------ +help: provide the argument + | +LL | f2(/* u16 */); + | ~~~~~~~~~~~ + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0061`. -- cgit v1.2.3