rust/src/test/ui/issues/issue-46756-consider-borrowing-cast-or-binexpr.stderr

28 lines
1.1 KiB
Plaintext
Raw Normal View History

error[E0308]: mismatched types
--> $DIR/issue-46756-consider-borrowing-cast-or-binexpr.rs:22:42
|
2018-02-22 18:42:32 -06:00
LL | 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:24:42
|
2018-02-22 18:42:32 -06:00
LL | 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
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0308`.