]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/async-await/issue-68112.no_drop_tracking.stderr
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / async-await / issue-68112.no_drop_tracking.stderr
index 11b7d1aaaa6c72621050a9c7c1337f4d103a7bed..38eb85b302fd588abbeb8e8f4b82f84338fa21bb 100644 (file)
@@ -59,10 +59,10 @@ LL | fn make_non_send_future2() -> impl Future<Output = Arc<RefCell<i32>>> {
    |                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    = note: required because it captures the following types: `ResumeTy`, `impl Future<Output = Arc<RefCell<i32>>>`, `()`, `i32`, `Ready<i32>`
 note: required because it's used within this `async` block
-  --> $DIR/issue-68112.rs:60:26
+  --> $DIR/issue-68112.rs:60:20
    |
 LL |       let send_fut = async {
-   |  __________________________^
+   |  ____________________^
 LL | |         let non_send_fut = make_non_send_future2();
 LL | |         let _ = non_send_fut.await;
 LL | |         ready(0).await;