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