mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-09 03:38:18 +00:00
21 lines
426 B
Rust
21 lines
426 B
Rust
#![feature(coroutines, coroutine_trait, stmt_expr_attributes)]
|
|
|
|
use std::ops::Coroutine;
|
|
use std::pin::Pin;
|
|
|
|
fn main() {
|
|
let _b = {
|
|
let a = 3;
|
|
Pin::new(&mut #[coroutine] || yield &a).resume(())
|
|
//~^ ERROR: `a` does not live long enough
|
|
};
|
|
|
|
let _b = {
|
|
let a = 3;
|
|
#[coroutine] || {
|
|
yield &a
|
|
//~^ ERROR: `a` does not live long enough
|
|
}
|
|
};
|
|
}
|