about summary refs log tree commit diff
path: root/tests/ui/coroutine/pattern-borrow.rs
blob: 46547504abc9dec4627d08420cbbdb60a3911d6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![feature(coroutines)]

enum Test { A(i32), B, }

fn main() { }

fn fun(test: Test) {
    #[coroutine] move || {
        if let Test::A(ref _a) = test { //~ ERROR borrow may still be in use when coroutine yields
            yield ();
            _a.use_ref();
        }
    };
}

trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { }  }
impl<T> Fake for T { }