aef0f4024a
And suggest adding the `#[coroutine]` to the closure
16 lines
229 B
Rust
16 lines
229 B
Rust
#![feature(coroutines, coroutine_trait)]
|
|
|
|
use std::ops::Coroutine;
|
|
|
|
fn msg() -> u32 {
|
|
0
|
|
}
|
|
|
|
pub fn foo() -> impl Coroutine<(), Yield = (), Return = u32> {
|
|
#[coroutine]
|
|
|| {
|
|
yield;
|
|
return msg();
|
|
}
|
|
}
|