Skip to content

Commit a501599

Browse files
committed
Desugar for await loops
1 parent a26a089 commit a501599

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

core/src/async_iter/async_iter.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ pub trait AsyncIterator {
4747
/// Rust's usual rules apply: calls must never cause undefined behavior
4848
/// (memory corruption, incorrect use of `unsafe` functions, or the like),
4949
/// regardless of the async iterator's state.
50+
#[cfg_attr(not(bootstrap), lang = "async_iterator_poll_next")]
5051
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>>;
5152

5253
/// Returns the bounds on the remaining length of the async iterator.

0 commit comments

Comments
 (0)