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