Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. #![feature(async_await)]
  2.  
  3. async fn bar() {
  4. }
  5.  
  6. pub async fn foo() {
  7. std::thread::spawn(move || ());
  8. bar().await;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement