Files
rust/tests/ui/traits/impl-method-mismatch.stderr

18 lines
623 B
Plaintext
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0053]: method `jumbo` has an incompatible type for trait
--> $DIR/impl-method-mismatch.rs:9:5
2018-08-08 14:28:26 +02:00
|
LL | unsafe fn jumbo(&self, x: &usize) { *self + *x; }
2024-05-17 14:17:48 -03:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected safe fn, found unsafe fn
2018-08-08 14:28:26 +02:00
|
note: type in trait
--> $DIR/impl-method-mismatch.rs:4:5
|
LL | fn jumbo(&self, x: &usize) -> usize;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= note: expected signature `fn(&_, &_) -> usize`
found signature `unsafe fn(&_, &_) -> ()`
2018-08-08 14:28:26 +02:00
error: aborting due to 1 previous error
2018-08-08 14:28:26 +02:00
For more information about this error, try `rustc --explain E0053`.