mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 05:45:59 +00:00
12 lines
152 B
Rust
12 lines
152 B
Rust
// check-pass
|
|
|
|
#![feature(coroutines, coroutine_trait)]
|
|
|
|
use std::ops::Coroutine;
|
|
|
|
pub fn example() -> impl Coroutine {
|
|
|| yield &1
|
|
}
|
|
|
|
fn main() {}
|