Update issue-78938-async-block.rs

Fix whitespace
This commit is contained in:
1000teslas 2021-01-03 04:00:51 +11:00
parent 12f1795743
commit 2b9c8ff6b3

View file

@ -26,7 +26,7 @@ struct JoinHandle;
impl Future for JoinHandle {
type Output = ();
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
loop {}
loop {}
}
}