rust/src/test/ui/suggestions/issue-46756-consider-borrowing-cast-or-binexpr.stderr
Zack M. Davis 73a90194f9 in which suggestions to borrow casts or binary expressions are rectified
This simple patch resolves #46756 (which was specifically about the case of
casts, but it would be poor form indeed to fix a reported issue without at
least a cursory attempt at answering the immortal question, "How does this bug
generalize?").
2017-12-15 23:26:00 -08:00

27 lines
1.1 KiB
Plaintext

error[E0308]: mismatched types
--> $DIR/issue-46756-consider-borrowing-cast-or-binexpr.rs:20:42
|
20 | light_flows_our_war_of_mocking_words(behold as usize);
| ^^^^^^^^^^^^^^^
| |
| expected &usize, found usize
| help: consider borrowing here: `&(behold as usize)`
|
= note: expected type `&usize`
found type `usize`
error[E0308]: mismatched types
--> $DIR/issue-46756-consider-borrowing-cast-or-binexpr.rs:22:42
|
22 | light_flows_our_war_of_mocking_words(with_tears + 4);
| ^^^^^^^^^^^^^^
| |
| expected &usize, found usize
| help: consider borrowing here: `&(with_tears + 4)`
|
= note: expected type `&usize`
found type `usize`
error: aborting due to 2 previous errors