summaryrefslogtreecommitdiffstats
path: root/tests/ui/overloaded/overloaded-calls-nontuple.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/overloaded/overloaded-calls-nontuple.stderr')
-rw-r--r--tests/ui/overloaded/overloaded-calls-nontuple.stderr34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/ui/overloaded/overloaded-calls-nontuple.stderr b/tests/ui/overloaded/overloaded-calls-nontuple.stderr
new file mode 100644
index 000000000..2e1600782
--- /dev/null
+++ b/tests/ui/overloaded/overloaded-calls-nontuple.stderr
@@ -0,0 +1,34 @@
+error[E0059]: type parameter to bare `FnMut` trait must be a tuple
+ --> $DIR/overloaded-calls-nontuple.rs:10:6
+ |
+LL | impl FnMut<isize> for S {
+ | ^^^^^^^^^^^^ the trait `Tuple` is not implemented for `isize`
+ |
+note: required by a bound in `FnMut`
+ --> $SRC_DIR/core/src/ops/function.rs:LL:COL
+
+error[E0059]: type parameter to bare `FnOnce` trait must be a tuple
+ --> $DIR/overloaded-calls-nontuple.rs:18:6
+ |
+LL | impl FnOnce<isize> for S {
+ | ^^^^^^^^^^^^^ the trait `Tuple` is not implemented for `isize`
+ |
+note: required by a bound in `FnOnce`
+ --> $SRC_DIR/core/src/ops/function.rs:LL:COL
+
+error[E0277]: functions with the "rust-call" ABI must take a single non-self tuple argument
+ --> $DIR/overloaded-calls-nontuple.rs:12:5
+ |
+LL | extern "rust-call" fn call_mut(&mut self, z: isize) -> isize {
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Tuple` is not implemented for `isize`
+
+error[E0277]: functions with the "rust-call" ABI must take a single non-self tuple argument
+ --> $DIR/overloaded-calls-nontuple.rs:21:5
+ |
+LL | extern "rust-call" fn call_once(mut self, z: isize) -> isize {
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Tuple` is not implemented for `isize`
+
+error: aborting due to 4 previous errors
+
+Some errors have detailed explanations: E0059, E0277.
+For more information about an error, try `rustc --explain E0059`.