]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-7061.stderr
Remove E0308 note when primary label has all info
[rust.git] / src / test / ui / issues / issue-7061.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-7061.rs:4:46
3    |
4 LL |     fn foo(&'a mut self) -> Box<BarStruct> { self }
5    |                             --------------   ^^^^ expected struct `std::boxed::Box`, found &mut BarStruct
6    |                             |
7    |                             expected `std::boxed::Box<BarStruct>` because of return type
8    |
9    = note:         expected struct `std::boxed::Box<BarStruct>`
10            found mutable reference `&'a mut BarStruct`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0308`.