pub fn pending<T>() -> Pending<T> ⓘ
Creates a future that is always pending.
use futures_lite::future; future::pending::<()>().await; unreachable!();