summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/option-content-move.rs
blob: ef38f114eca55f405a73cf6aa7f7fad9052910c6 (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
29
30
31
32
33
34
35
36
37
38
39
//run-rustfix

pub struct LipogramCorpora {
    selections: Vec<(char, Option<String>)>,
}

impl LipogramCorpora {
    pub fn validate_all(&mut self) -> Result<(), char> {
        for selection in &self.selections {
            if selection.1.is_some() {
                if selection.1.unwrap().contains(selection.0) {
                //~^ ERROR cannot move out of `selection.1`
                    return Err(selection.0);
                }
            }
        }
        Ok(())
    }
}

pub struct LipogramCorpora2 {
    selections: Vec<(char, Result<String, String>)>,
}

impl LipogramCorpora2 {
    pub fn validate_all(&mut self) -> Result<(), char> {
        for selection in &self.selections {
            if selection.1.is_ok() {
                if selection.1.unwrap().contains(selection.0) {
                //~^ ERROR cannot move out of `selection.1`
                    return Err(selection.0);
                }
            }
        }
        Ok(())
    }
}

fn main() {}