mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-16 09:49:45 +00:00
13 lines
170 B
Rust
13 lines
170 B
Rust
//@ check-pass
|
|
|
|
#![feature(coroutines, coroutine_trait)]
|
|
|
|
use std::ops::Coroutine;
|
|
|
|
pub fn example() -> impl Coroutine {
|
|
#[coroutine]
|
|
|| yield &1
|
|
}
|
|
|
|
fn main() {}
|