]> git.lizzy.rs Git - rust.git/blob - tests/ui/traits/impl-method-mismatch.stderr
Rollup merge of #105795 - nicholasbishop:bishop-stabilize-efiapi, r=joshtriplett
[rust.git] / tests / ui / traits / impl-method-mismatch.stderr
1 error[E0053]: method `jumbo` has an incompatible type for trait
2   --> $DIR/impl-method-mismatch.rs:7:5
3    |
4 LL |     unsafe fn jumbo(&self, x: &usize) { *self + *x; }
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected normal fn, found unsafe fn
6    |
7 note: type in trait
8   --> $DIR/impl-method-mismatch.rs:2:5
9    |
10 LL |     fn jumbo(&self, x: &usize) -> usize;
11    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12    = note: expected signature `fn(&usize, &usize) -> usize`
13               found signature `unsafe fn(&usize, &usize)`
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0053`.