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