mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
21 lines
378 B
Rust
21 lines
378 B
Rust
#![feature(coroutines, coroutine_trait)]
|
|
|
|
use std::ops::Coroutine;
|
|
use std::pin::Pin;
|
|
|
|
fn main() {
|
|
let _b = {
|
|
let a = 3;
|
|
Pin::new(&mut || yield &a).resume(())
|
|
//~^ ERROR: `a` does not live long enough
|
|
};
|
|
|
|
let _b = {
|
|
let a = 3;
|
|
|| {
|
|
yield &a
|
|
//~^ ERROR: `a` does not live long enough
|
|
}
|
|
};
|
|
}
|