2021-01-08 05:21:21 +00:00
|
|
|
error: functions with the "rust-call" ABI must take a single non-self argument that is a tuple
|
2020-11-17 19:42:29 +00:00
|
|
|
--> $DIR/overloaded-calls-nontuple.rs:11:5
|
|
|
|
|
|
|
|
|
LL | extern "rust-call" fn call_mut(&mut self, z: isize) -> isize {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2021-01-08 05:21:21 +00:00
|
|
|
error: functions with the "rust-call" ABI must take a single non-self argument that is a tuple
|
2020-11-17 19:42:29 +00:00
|
|
|
--> $DIR/overloaded-calls-nontuple.rs:19:5
|
|
|
|
|
|
|
|
|
LL | extern "rust-call" fn call_once(mut self, z: isize) -> isize { self.call_mut(z) }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-08-08 12:28:26 +00:00
|
|
|
error[E0059]: cannot use call notation; the first type parameter for the function trait is neither a tuple nor unit
|
2020-11-17 19:42:29 +00:00
|
|
|
--> $DIR/overloaded-calls-nontuple.rs:28:10
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | drop(s(3))
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^^^^
|
|
|
|
|
2020-11-17 19:42:29 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0059`.
|