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/argument-suggestions/exotic-calls.rs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 tests/ui/argument-suggestions/exotic-calls.rs (limited to 'tests/ui/argument-suggestions/exotic-calls.rs') diff --git a/tests/ui/argument-suggestions/exotic-calls.rs b/tests/ui/argument-suggestions/exotic-calls.rs new file mode 100644 index 000000000..569a39a2b --- /dev/null +++ b/tests/ui/argument-suggestions/exotic-calls.rs @@ -0,0 +1,26 @@ +fn foo(t: T) { + t(1i32); + //~^ ERROR function takes 0 arguments but 1 argument was supplied +} + +fn bar(t: impl Fn()) { + t(1i32); + //~^ ERROR function takes 0 arguments but 1 argument was supplied +} + +fn baz() -> impl Fn() { + || {} +} + +fn baz2() { + baz()(1i32) + //~^ ERROR function takes 0 arguments but 1 argument was supplied +} + +fn qux() { + let x = || {}; + x(1i32); + //~^ ERROR function takes 0 arguments but 1 argument was supplied +} + +fn main() {} -- cgit v1.2.3