mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
28 lines
590 B
Rust
28 lines
590 B
Rust
#![feature(coroutine_trait)]
|
|
#![feature(coroutines)]
|
|
#![allow(unused)]
|
|
|
|
use std::ops::Coroutine;
|
|
use std::ops::CoroutineState;
|
|
use std::pin::pin;
|
|
|
|
fn mk_static(s: &str) -> &'static str {
|
|
let mut storage: Option<&'static str> = None;
|
|
|
|
let mut coroutine = pin!(|_: &str| {
|
|
let x: &'static str = yield ();
|
|
//~^ ERROR lifetime may not live long enough
|
|
storage = Some(x);
|
|
});
|
|
|
|
coroutine.as_mut().resume(s);
|
|
coroutine.as_mut().resume(s);
|
|
|
|
storage.unwrap()
|
|
}
|
|
|
|
fn main() {
|
|
let s = mk_static(&String::from("hello, world"));
|
|
println!("{s}");
|
|
}
|