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