summaryrefslogtreecommitdiffstats
path: root/src/test/ui/return/issue-82612-return-mutable-reference.stderr
blob: eb2322d51fd5162acadb3a13de2b2eccb36ccb22 (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
error[E0308]: mismatched types
  --> $DIR/issue-82612-return-mutable-reference.rs:18:13
   |
LL | /         if index < self.values.len() {
LL | |             let value = unsafe { self.values.get_unchecked_mut(index) };
LL | |             value.get_or_insert_with(func)
   | |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found `&mut V`
LL | |         }
   | |_________- expected this to be `()`
   |
   = note:      expected unit type `()`
           found mutable reference `&mut V`
help: consider using a semicolon here
   |
LL |             value.get_or_insert_with(func);
   |                                           +
help: consider using a semicolon here
   |
LL |         };
   |          +
help: you might have meant to return this value
   |
LL |             return value.get_or_insert_with(func);
   |             ++++++                               +

error: aborting due to previous error

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