mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
aef0f4024a
And suggest adding the `#[coroutine]` to the closure
19 lines
480 B
Rust
19 lines
480 B
Rust
#![feature(coroutines, coroutine_trait, stmt_expr_attributes)]
|
|
use std::ops::{Coroutine, CoroutineState};
|
|
use std::pin::Pin;
|
|
|
|
fn dangle(x: &mut i32) -> &'static mut i32 {
|
|
let mut g = #[coroutine] || {
|
|
yield;
|
|
x
|
|
};
|
|
loop {
|
|
match Pin::new(&mut g).resume(()) {
|
|
CoroutineState::Complete(c) => return c,
|
|
//~^ ERROR lifetime may not live long enough
|
|
CoroutineState::Yielded(_) => (),
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|