Add "this has type {} which {}" note

This commit is contained in:
Yuki Okushi 2020-10-22 14:15:40 +09:00
parent 66226ca157
commit 2da86a1bfd
3 changed files with 17 additions and 0 deletions

View file

@ -17,6 +17,14 @@ note: the value is later dropped here
|
LL | }).await;
| ^
note: this has type `[closure@$DIR/issue-70935-complex-spans.rs:13:13: 15:10]` which is not `Send`
--> $DIR/issue-70935-complex-spans.rs:13:13
|
LL | baz(|| async{
| _____________^
LL | | foo(tx.clone());
LL | | }).await;
| |_________^
error: aborting due to previous error

View file

@ -18,6 +18,11 @@ note: `std::ptr::null()` is later dropped here
|
LL | bar(Foo(std::ptr::null())).await;
| ^
note: this has type `*const u8` which is not `Send`
--> $DIR/issue-65436-raw-ptr-not-send.rs:14:17
|
LL | bar(Foo(std::ptr::null())).await;
| ^^^^^^^^^^^^^^^^
help: consider moving this into a `let` binding to create a shorter lived borrow
--> $DIR/issue-65436-raw-ptr-not-send.rs:14:13
|