2018-08-08 12:28:26 +00:00
|
|
|
error[E0053]: method `jumbo` has an incompatible type for trait
|
2021-02-08 22:15:45 +00:00
|
|
|
--> $DIR/impl-method-mismatch.rs:7:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | unsafe fn jumbo(&self, x: &usize) { *self + *x; }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected normal fn, found unsafe fn
|
|
|
|
|
|
2021-12-11 02:20:41 +00:00
|
|
|
note: type in trait
|
|
|
|
--> $DIR/impl-method-mismatch.rs:2:5
|
|
|
|
|
|
|
|
|
LL | fn jumbo(&self, x: &usize) -> usize;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-12-24 23:17:25 +00:00
|
|
|
= note: expected signature `fn(&usize, &usize) -> usize`
|
|
|
|
found signature `unsafe fn(&usize, &usize)`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0053`.
|