rust/tests/ui/coroutine/coroutine-region-requirements.rs

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

20 lines
445 B
Rust
Raw Normal View History

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 {
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() {}