2019-06-13 22:58:26 +00:00
|
|
|
// This used to compile the future down to ud2, due to uninhabited types being
|
2023-10-19 21:46:28 +00:00
|
|
|
// handled incorrectly in coroutines.
|
2025-04-08 13:17:08 +00:00
|
|
|
//@ compile-flags: -Copt-level=z -Cdebuginfo=2
|
|
|
|
//@ edition: 2018
|
2019-06-13 22:58:26 +00:00
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
2019-07-01 14:18:45 +00:00
|
|
|
|
2019-06-13 22:58:26 +00:00
|
|
|
use std::future::Future;
|
|
|
|
use std::task::Poll;
|
|
|
|
use std::task::Context;
|
|
|
|
use std::pin::Pin;
|
|
|
|
use std::rc::Rc;
|
|
|
|
|
|
|
|
struct Never();
|
|
|
|
impl Future for Never {
|
|
|
|
type Output = ();
|
|
|
|
fn poll(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Self::Output> {
|
|
|
|
Poll::Pending
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let fut = async {
|
|
|
|
let _rc = Rc::new(()); // Also crashes with Arc
|
2019-07-03 22:25:14 +00:00
|
|
|
Never().await;
|
2019-06-13 22:58:26 +00:00
|
|
|
};
|
|
|
|
let _bla = fut; // Moving the future is required.
|
|
|
|
}
|