os-rust/tests/ui/coroutine/borrowing.rs

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

21 lines
378 B
Rust
Raw Normal View History

2023-10-19 21:46:28 +00:00
#![feature(coroutines, coroutine_trait)]
2017-07-07 16:12:44 -07:00
2023-10-19 16:06:43 +00:00
use std::ops::Coroutine;
2018-10-04 20:49:38 +02:00
use std::pin::Pin;
2017-07-07 16:12:44 -07:00
fn main() {
2017-07-07 16:12:44 -07:00
let _b = {
let a = 3;
Pin::new(&mut || yield &a).resume(())
2017-07-07 16:12:44 -07:00
//~^ ERROR: `a` does not live long enough
};
let _b = {
let a = 3;
|| {
yield &a
//~^ ERROR: `a` does not live long enough
}
};
}