]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-50687-ice-on-borrow.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-50687-ice-on-borrow.stderr
CommitLineData
f9f354fc
XL
1error[E0308]: mismatched types
2 --> $DIR/issue-50687-ice-on-borrow.rs:40:17
3 |
4LL | let _: () = Borrow::borrow(&owned);
94222f64
XL
5 | -- ^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found reference
6 | |
f9f354fc
XL
7 | expected due to this
8 |
9 = note: expected unit type `()`
10 found reference `&_`
94222f64
XL
11help: consider dereferencing the borrow
12 |
13LL | let _: () = *Borrow::borrow(&owned);
14 | +
f9f354fc
XL
15
16error: aborting due to previous error
17
18For more information about this error, try `rustc --explain E0308`.