2021-01-13 18:00:00 -06:00
|
|
|
// compile-flags: --emit metadata
|
2023-10-19 16:46:28 -05:00
|
|
|
#![feature(coroutines, coroutine_trait)]
|
2021-01-13 18:00:00 -06:00
|
|
|
|
|
|
|
use std::marker::Unpin;
|
2023-10-19 11:06:43 -05:00
|
|
|
use std::ops::Coroutine;
|
2021-01-13 18:00:00 -06:00
|
|
|
|
2023-10-19 11:06:43 -05:00
|
|
|
pub fn g() -> impl Coroutine<(), Yield = (), Return = ()> {
|
2021-01-13 18:00:00 -06:00
|
|
|
|| {
|
|
|
|
yield;
|
|
|
|
}
|
|
|
|
}
|