rust/tests/ui/coroutine/pattern-borrow.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
368 B
Rust
Raw Normal View History

2023-10-19 21:46:28 +00:00
#![feature(coroutines)]
enum Test { A(i32), B, }
fn main() { }
fn fun(test: Test) {
#[coroutine] move || {
2023-10-19 21:46:28 +00:00
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 { }