You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since #8766, extracting some code into a function generates an async fn if that code includes a .await point. However, the call to the generated function is not .awaited, leading to the code not compiling in many cases, or even the code still compiling but the async task not being executed. For example, when extracting
Since #8766, extracting some code into a function generates an
async fn
if that code includes a.await
point. However, the call to the generated function is not.await
ed, leading to the code not compiling in many cases, or even the code still compiling but the async task not being executed. For example, when extractingas
sleep50ms
, the call ends up as justwhen it should be
The text was updated successfully, but these errors were encountered: