blob: 3e86c97f5c123629f4a9e468ea852d286f68c522 [file] [log] [blame]
error[E0053]: method `jumbo` has an incompatible type for trait
--> $DIR/trait-impl-method-mismatch.rs:7:5
|
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
|
= note: expected type `fn(&usize, &usize) -> usize`
found type `unsafe fn(&usize, &usize)`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0053`.