12 lines
219 B
Rust
12 lines
219 B
Rust
//@ compile-flags: --emit metadata
|
|
#![feature(coroutines, coroutine_trait)]
|
|
|
|
use std::marker::Unpin;
|
|
use std::ops::Coroutine;
|
|
|
|
pub fn g() -> impl Coroutine<(), Yield = (), Return = ()> {
|
|
|| {
|
|
yield;
|
|
}
|
|
}
|