2018-07-15 21:11:54 +00:00
|
|
|
error[E0053]: method `call` has an incompatible type for trait
|
2021-04-08 17:16:15 +00:00
|
|
|
--> $DIR/issue-20225.rs:6:43
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2019-11-01 03:58:37 +00:00
|
|
|
LL | impl<'a, T> Fn<(&'a T,)> for Foo {
|
2023-10-18 22:10:48 +00:00
|
|
|
| - found this type parameter
|
2018-07-15 21:11:54 +00:00
|
|
|
LL | extern "rust-call" fn call(&self, (_,): (T,)) {}
|
2021-04-08 20:50:47 +00:00
|
|
|
| ^^^^
|
|
|
|
| |
|
2023-01-03 02:00:33 +00:00
|
|
|
| expected `&'a T`, found type parameter `T`
|
2021-04-08 20:50:47 +00:00
|
|
|
| help: change the parameter type to match the trait: `(&'a T,)`
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2023-12-08 03:54:41 +00:00
|
|
|
= note: expected signature `extern "rust-call" fn(&Foo, (&'a _,))`
|
|
|
|
found signature `extern "rust-call" fn(&Foo, (_,))`
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
error[E0053]: method `call_mut` has an incompatible type for trait
|
2021-04-08 17:16:15 +00:00
|
|
|
--> $DIR/issue-20225.rs:11:51
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2019-11-01 03:58:37 +00:00
|
|
|
LL | impl<'a, T> FnMut<(&'a T,)> for Foo {
|
2023-10-18 22:10:48 +00:00
|
|
|
| - found this type parameter
|
2018-07-15 21:11:54 +00:00
|
|
|
LL | extern "rust-call" fn call_mut(&mut self, (_,): (T,)) {}
|
2021-04-08 20:50:47 +00:00
|
|
|
| ^^^^
|
|
|
|
| |
|
2023-01-03 02:00:33 +00:00
|
|
|
| expected `&'a T`, found type parameter `T`
|
2021-04-08 20:50:47 +00:00
|
|
|
| help: change the parameter type to match the trait: `(&'a T,)`
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2023-12-08 03:54:41 +00:00
|
|
|
= note: expected signature `extern "rust-call" fn(&mut Foo, (&'a _,))`
|
|
|
|
found signature `extern "rust-call" fn(&mut Foo, (_,))`
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
error[E0053]: method `call_once` has an incompatible type for trait
|
2021-04-08 17:16:15 +00:00
|
|
|
--> $DIR/issue-20225.rs:18:47
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2019-11-01 03:58:37 +00:00
|
|
|
LL | impl<'a, T> FnOnce<(&'a T,)> for Foo {
|
2023-10-18 22:10:48 +00:00
|
|
|
| - found this type parameter
|
2019-11-01 03:58:37 +00:00
|
|
|
...
|
2018-07-15 21:11:54 +00:00
|
|
|
LL | extern "rust-call" fn call_once(self, (_,): (T,)) {}
|
2021-04-08 20:50:47 +00:00
|
|
|
| ^^^^
|
|
|
|
| |
|
2023-01-03 02:00:33 +00:00
|
|
|
| expected `&'a T`, found type parameter `T`
|
2021-04-08 20:50:47 +00:00
|
|
|
| help: change the parameter type to match the trait: `(&'a T,)`
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2023-12-08 03:54:41 +00:00
|
|
|
= note: expected signature `extern "rust-call" fn(Foo, (&'a _,))`
|
|
|
|
found signature `extern "rust-call" fn(Foo, (_,))`
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0053`.
|