summary refs log tree commit diff
path: root/src/test/ui/issues/issue-7061.rs
blob: 66ae90034e7f53c8db47736bd2cc74221eb92c45 (plain)
1
2
3
4
5
6
7
8
9
10
struct BarStruct;

impl<'a> BarStruct {
    fn foo(&'a mut self) -> Box<BarStruct> { self }
    //~^ ERROR mismatched types
    //~| expected type `std::boxed::Box<BarStruct>`
    //~| found type `&'a mut BarStruct`
}

fn main() {}