summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/issue-50687-ice-on-borrow.stderr
blob: 24dce4697929dd1b2db082168e66f2fb5cfc31e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0308]: mismatched types
  --> $DIR/issue-50687-ice-on-borrow.rs:40:17
   |
LL |     let _: () = Borrow::borrow(&owned);
   |            --   ^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found `&_`
   |            |
   |            expected due to this
   |
   = note: expected unit type `()`
              found reference `&_`
help: consider dereferencing the borrow
   |
LL |     let _: () = *Borrow::borrow(&owned);
   |                 +

error: aborting due to 1 previous error

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