blob: e6a0edac4b1113d3c434532953901e7b6b195d57 (
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 reference
| |
| expected due to this
|
= note: expected unit type `()`
found reference `&_`
help: consider dereferencing the borrow
|
LL | let _: () = *Borrow::borrow(&owned);
| +
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.
|