]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/impl-method-mismatch.stderr
:arrow_up: rust-analyzer
[rust.git] / src / test / 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 fn pointer `fn(&usize, &usize) -> usize`
13               found fn pointer `unsafe fn(&usize, &usize)`
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0053`.