]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-50687-ice-on-borrow.stderr
Merge commit 'b7f3f7f6082679da2da9a0b3faf1b5adef3afd3b' into clippyup
[rust.git] / src / test / ui / issues / issue-50687-ice-on-borrow.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-50687-ice-on-borrow.rs:40:17
3    |
4 LL |     let _: () = Borrow::borrow(&owned);
5    |            --   ^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found reference
6    |            |
7    |            expected due to this
8    |
9    = note: expected unit type `()`
10               found reference `&_`
11 help: consider dereferencing the borrow
12    |
13 LL |     let _: () = *Borrow::borrow(&owned);
14    |                 +
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0308`.