summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-46756-consider-borrowing-cast-or-binexpr.stderr
blob: e874ded8ec54e2699d1708e6601432c19800d9a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
error[E0308]: mismatched types
  --> $DIR/issue-46756-consider-borrowing-cast-or-binexpr.rs:12:42
   |
LL |     light_flows_our_war_of_mocking_words(behold as usize);
   |     ------------------------------------ ^^^^^^^^^^^^^^^
   |     |                                    |
   |     |                                    expected `&usize`, found `usize`
   |     |                                    help: consider borrowing here: `&(behold as usize)`
   |     arguments to this function are incorrect
   |
note: function defined here
  --> $DIR/issue-46756-consider-borrowing-cast-or-binexpr.rs:5:4
   |
LL | fn light_flows_our_war_of_mocking_words(and_yet: &usize) -> usize {
   |    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ---------------

error[E0308]: mismatched types
  --> $DIR/issue-46756-consider-borrowing-cast-or-binexpr.rs:14:42
   |
LL |     light_flows_our_war_of_mocking_words(with_tears + 4);
   |     ------------------------------------ ^^^^^^^^^^^^^^
   |     |                                    |
   |     |                                    expected `&usize`, found `usize`
   |     |                                    help: consider borrowing here: `&(with_tears + 4)`
   |     arguments to this function are incorrect
   |
note: function defined here
  --> $DIR/issue-46756-consider-borrowing-cast-or-binexpr.rs:5:4
   |
LL | fn light_flows_our_war_of_mocking_words(and_yet: &usize) -> usize {
   |    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ---------------

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0308`.