summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-18952.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/issues/issue-18952.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/issues/issue-18952.rs')
-rw-r--r--tests/ui/issues/issue-18952.rs56
1 files changed, 56 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-18952.rs b/tests/ui/issues/issue-18952.rs
new file mode 100644
index 000000000..56378b59e
--- /dev/null
+++ b/tests/ui/issues/issue-18952.rs
@@ -0,0 +1,56 @@
+// This issue tests fn_traits overloading on arity.
+// run-pass
+
+#![feature(fn_traits)]
+#![feature(unboxed_closures)]
+
+struct Foo;
+
+impl Fn<(isize, isize)> for Foo {
+ extern "rust-call" fn call(&self, args: (isize, isize)) -> Self::Output {
+ println!("{:?}", args);
+ (args.0 + 1, args.1 + 1)
+ }
+}
+
+impl FnMut<(isize, isize)> for Foo {
+ extern "rust-call" fn call_mut(&mut self, args: (isize, isize)) -> Self::Output {
+ println!("{:?}", args);
+ (args.0 + 1, args.1 + 1)
+ }
+}
+
+impl FnOnce<(isize, isize)> for Foo {
+ type Output = (isize, isize);
+ extern "rust-call" fn call_once(self, args: (isize, isize)) -> Self::Output {
+ println!("{:?}", args);
+ (args.0 + 1, args.1 + 1)
+ }
+}
+
+impl Fn<(isize, isize, isize)> for Foo {
+ extern "rust-call" fn call(&self, args: (isize, isize, isize)) -> Self::Output {
+ println!("{:?}", args);
+ (args.0 + 3, args.1 + 3, args.2 + 3)
+ }
+}
+
+impl FnMut<(isize, isize, isize)> for Foo {
+ extern "rust-call" fn call_mut(&mut self, args: (isize, isize, isize)) -> Self::Output {
+ println!("{:?}", args);
+ (args.0 + 3, args.1 + 3, args.2 + 3)
+ }
+}
+impl FnOnce<(isize, isize, isize)> for Foo {
+ type Output = (isize, isize, isize);
+ extern "rust-call" fn call_once(self, args: (isize, isize, isize)) -> Self::Output {
+ println!("{:?}", args);
+ (args.0 + 3, args.1 + 3, args.2 + 3)
+ }
+}
+
+fn main() {
+ let foo = Foo;
+ assert_eq!(foo(1, 1), (2, 2));
+ assert_eq!(foo(1, 1, 1), (4, 4, 4));
+}