summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/polonius/issue-46589.rs
blob: 648280a1dcdf0da947ff3dae45318cb587328393 (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
// This test is a copy of `ui/nll/issue-46589.rs` which fails in NLL but succeeds in Polonius.
// As we can't have a test here which conditionally passes depending on a test
// revision/compile-flags. We ensure here that it passes in Polonius mode.

// check-pass
// compile-flags: -Z polonius

struct Foo;

impl Foo {
    fn get_self(&mut self) -> Option<&mut Self> {
        Some(self)
    }

    fn new_self(&mut self) -> &mut Self {
        self
    }

    fn trigger_bug(&mut self) {
        let other = &mut (&mut *self);

        *other = match (*other).get_self() {
            Some(s) => s,
            None => (*other).new_self()
        };

        let c = other;
    }
}

fn main() {}