summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-7061.stderr
blob: a209f8a4249f1dc899a1cba70f6185208978ec44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0308]: mismatched types
  --> $DIR/issue-7061.rs:4:46
   |
LL |     fn foo(&'a mut self) -> Box<BarStruct> { self }
   |                             --------------   ^^^^ expected `Box<BarStruct>`, found `&mut BarStruct`
   |                             |
   |                             expected `Box<BarStruct>` because of return type
   |
   = note:         expected struct `Box<BarStruct>`
           found mutable reference `&'a mut BarStruct`

error: aborting due to previous error

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