2017-12-16 01:26:00 -06:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-46756-consider-borrowing-cast-or-binexpr.rs:12:42
|
2017-12-16 01:26:00 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | light_flows_our_war_of_mocking_words(behold as usize);
|
2017-12-16 01:26:00 -06:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
| |
|
2019-11-15 11:37:01 -06:00
|
|
|
| expected `&usize`, found `usize`
|
2017-12-16 01:26:00 -06:00
|
|
|
| help: consider borrowing here: `&(behold as usize)`
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-46756-consider-borrowing-cast-or-binexpr.rs:14:42
|
2017-12-16 01:26:00 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | light_flows_our_war_of_mocking_words(with_tears + 4);
|
2017-12-16 01:26:00 -06:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
| |
|
2019-11-15 11:37:01 -06:00
|
|
|
| expected `&usize`, found `usize`
|
2017-12-16 01:26:00 -06:00
|
|
|
| help: consider borrowing here: `&(with_tears + 4)`
|
|
|
|
|
|
|
|
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`.
|