summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/copy-suggestion-region-vid.rs
blob: dff95283459b604afc09677cba04a6d157c2563a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub struct DataStruct();

pub struct HelperStruct<'n> {
    pub helpers: [Vec<&'n i64>; 2],
    pub is_empty: bool,
}

impl DataStruct {
    pub fn f(&self) -> HelperStruct {
        let helpers = [vec![], vec![]];

        HelperStruct { helpers, is_empty: helpers[0].is_empty() }
        //~^ ERROR borrow of moved value
    }
}

fn main() {}