2023-10-19 21:46:28 +00:00
|
|
|
#![feature(coroutines, coroutine_trait)]
|
2023-10-19 16:06:43 +00:00
|
|
|
use std::ops::{Coroutine, CoroutineState};
|
2018-10-04 18:49:38 +00:00
|
|
|
use std::pin::Pin;
|
2018-10-12 14:16:29 +00:00
|
|
|
|
|
|
|
fn dangle(x: &mut i32) -> &'static mut i32 {
|
|
|
|
let mut g = || {
|
|
|
|
yield;
|
|
|
|
x
|
|
|
|
};
|
|
|
|
loop {
|
2020-01-25 19:03:10 +00:00
|
|
|
match Pin::new(&mut g).resume(()) {
|
2023-10-19 16:06:43 +00:00
|
|
|
CoroutineState::Complete(c) => return c,
|
2022-04-01 17:13:25 +00:00
|
|
|
//~^ ERROR lifetime may not live long enough
|
2023-10-19 16:06:43 +00:00
|
|
|
CoroutineState::Yielded(_) => (),
|
2018-10-12 14:16:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|