summary refs log tree commit diff
path: root/tests/ui/traits/impl-method-mismatch.stderr
blob: 2061fc78575a0dd784e393a65a77499895af7b8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error[E0053]: method `jumbo` has an incompatible type for trait
  --> $DIR/impl-method-mismatch.rs:7:5
   |
LL |     unsafe fn jumbo(&self, x: &usize) { *self + *x; }
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected normal fn, found unsafe fn
   |
note: type in trait
  --> $DIR/impl-method-mismatch.rs:2:5
   |
LL |     fn jumbo(&self, x: &usize) -> usize;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   = note: expected signature `fn(&_, &_) -> usize`
              found signature `unsafe fn(&_, &_)`

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0053`.